File tree 2 files changed +2
-12
lines changed
2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -49,18 +49,15 @@ jobs:
49
49
- uses : actions/checkout@v3
50
50
- name : Install Rust
51
51
run : rustup update stable
52
- - uses : actions-rs/clippy-check@v1
53
- with :
54
- token : ${{ secrets.GITHUB_TOKEN }}
55
- args : --all-features -- -W clippy::all
52
+ - run : cargo clippy --all-features
56
53
57
54
fmt :
58
55
runs-on : ubuntu-latest
59
56
steps :
60
57
- uses : actions/checkout@v3
61
58
- name : Install Rust
62
59
run : rustup update stable
63
- - run : cargo fmt --all -- -- check
60
+ - run : cargo fmt --all --check
64
61
65
62
miri :
66
63
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 5
5
tags :
6
6
- v[0-9]+.*
7
7
8
- env :
9
- RUSTFLAGS : -D warnings
10
- RUST_BACKTRACE : 1
11
-
12
8
jobs :
13
9
create-release :
14
10
if : github.repository_owner == 'smol-rs'
15
11
runs-on : ubuntu-latest
16
12
steps :
17
13
- uses : actions/checkout@v3
18
- - name : Install Rust
19
- run : rustup update stable
20
- - run : cargo package
21
14
- uses : taiki-e/create-gh-release-action@v1
22
15
with :
23
16
changelog : CHANGELOG.md
You can’t perform that action at this time.
0 commit comments