Skip to content

Commit c1d42b2

Browse files
committed
Update CI
1 parent 5ab24a5 commit c1d42b2

File tree

3 files changed

+20
-39
lines changed

3 files changed

+20
-39
lines changed

.github/workflows/ci.yml

+12-22
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77

88
name: CI
99

10+
env:
11+
RUSTFLAGS: '--deny warnings'
12+
1013
jobs:
1114
ci-linux:
1215
name: CI
@@ -15,7 +18,7 @@ jobs:
1518
strategy:
1619
matrix:
1720
# All published crates must build on stable.
18-
rust: [stable, beta, 1.46.0]
21+
rust: [stable, beta, 1.56.1]
1922

2023
# The default target we're compiling on and for.
2124
TARGET: [x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl]
@@ -27,26 +30,13 @@ jobs:
2730
TARGET: x86_64-unknown-linux-gnu
2831

2932
steps:
30-
- uses: actions/checkout@v2
31-
- uses: actions-rs/toolchain@v1
33+
- uses: actions/checkout@v3
34+
- uses: dtolnay/rust-toolchain@master
3235
with:
33-
profile: minimal
3436
toolchain: ${{ matrix.rust }}
35-
target: ${{ matrix.TARGET }}
36-
override: true
37-
- uses: actions-rs/cargo@v1
38-
with:
39-
command: check
40-
args: --target=${{ matrix.TARGET }}
41-
- uses: actions-rs/cargo@v1
42-
with:
43-
command: build
44-
args: --target=${{ matrix.TARGET }}
45-
- uses: actions-rs/cargo@v1
46-
with:
47-
command: test
48-
args: --target=${{ matrix.TARGET }}
49-
- uses: actions-rs/cargo@v1
50-
with:
51-
command: build
52-
args: --target=${{ matrix.TARGET }} --examples
37+
target: ${{ matrix.target }}
38+
39+
- run: cargo check --target=${{ matrix.TARGET }}
40+
- run: cargo build --target=${{ matrix.TARGET }}
41+
- run: cargo test --target=${{ matrix.TARGET }}
42+
- run: cargo build --target=${{ matrix.TARGET }} --examples

.github/workflows/clippy.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,9 @@ jobs:
1010
clippy_check:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions-rs/toolchain@v1
13+
- uses: actions/checkout@v3
14+
- uses: dtolnay/rust-toolchain@master
1515
with:
16-
profile: minimal
17-
toolchain: 1.55.0
18-
override: true
16+
toolchain: 1.71.0
1917
components: clippy
20-
- uses: actions-rs/clippy-check@v1
21-
with:
22-
token: ${{ secrets.GITHUB_TOKEN }}
18+
- run: cargo clippy

.github/workflows/rustfmt.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,9 @@ jobs:
1212
name: Rustfmt
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions-rs/toolchain@v1
15+
- uses: actions/checkout@v3
16+
- uses: dtolnay/rust-toolchain@master
1717
with:
18-
profile: minimal
19-
toolchain: stable
20-
override: true
18+
toolchain: 1.71.0
2119
components: rustfmt
22-
- uses: actions-rs/cargo@v1
23-
with:
24-
command: fmt
25-
args: --all -- --check
20+
- run: cargo fmt --all -- --check

0 commit comments

Comments
 (0)