Skip to content

Commit 41dc8e0

Browse files
committed
chore: minor CI improvements
1 parent 5ef95f8 commit 41dc8e0

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,8 @@ jobs:
1212
platform: [ubuntu-latest, windows-latest, macos-latest]
1313
runs-on: ${{ matrix.platform }}
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions-rs/toolchain@v1
17-
with:
18-
toolchain: stable
19-
- uses: actions-rs/cargo@v1
20-
with:
21-
command: check
22-
args: --no-default-features --features=${{ matrix.features }}
23-
- uses: actions-rs/cargo@v1
24-
with:
25-
command: test
26-
args: --no-default-features --features=${{ matrix.features }}
15+
- uses: actions/checkout@v5
16+
- uses: dtolnay/rust-toolchain@stable
17+
- run: cargo check --no-default-features --features=${{ matrix.features }}
18+
- run: cargo test --no-default-features --features=${{ matrix.features }}
19+
- run: cargo fmt -- --check

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,3 @@ the last, in which it is cleared.
4040
Signed values are first converted to an unsigned representation using zigzag
4141
encoding (also described on the page linked above), and then encoded as every
4242
other unsigned number.
43-

0 commit comments

Comments
 (0)