-
Notifications
You must be signed in to change notification settings - Fork 7
119 lines (101 loc) · 3 KB
/
everything.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
---
name: Run Tests & Publishing
on: [push, pull_request]
jobs:
lint:
name: Lint Codebase
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
profile: minimal
- name: Setup WebAssembly Target
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
profile: minimal
- name: Restore Rust Cache
uses: Swatinem/rust-cache@v2
- name: Run Lints
if: github.event_name == 'push'
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- name: Run Lints (WebAssembly)
if: github.event_name == 'push'
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --target=wasm32-unknown-unknown
- name: Run Lints (PR)
if: github.event_name == 'pull_request'
run: cargo clippy --all-features
- name: Run Lints (PR)
if: github.event_name == 'pull_request'
run: cargo clippy --all-features --target=wasm32-unknown-unknown
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
profile: minimal
- name: Restore Rust Cache
uses: Swatinem/rust-cache@v2
- name: Run Tests
run: cargo test --all-features
publish:
name: Publish to crates.io
runs-on: ubuntu-latest
needs:
- lint
- test
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
steps:
- name: Checkout Project
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
profile: minimal
- name: Restore Rust Cache
uses: Swatinem/rust-cache@v2
- name: Run cargo publish --dry-run
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: actions-rs/cargo@v1
with:
command: publish
args: --dry-run
env:
RUSTFLAGS: "--cfg releasing"
- name: Run cargo publish
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
uses: actions-rs/cargo@v1
with:
command: publish
args: --token ${{ secrets.CRATES_IO_TOKEN }}
env:
RUSTFLAGS: "--cfg releasing"