Skip to content

Commit

Permalink
test: actually run tests in CI
Browse files Browse the repository at this point in the history
This also updates actions/checkout to v4, but it shouldn't have any
visible effect other than addressing a warning.
  • Loading branch information
crawford committed Oct 16, 2023
1 parent 58e96fe commit 33eb769
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: Code Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Parse MSRV
run: sed -n 's/^rust-version = "\(.*\)"$/RUSTUP_TOOLCHAIN=\1/p' Cargo.toml >> $GITHUB_ENV
Expand All @@ -21,3 +21,4 @@ jobs:
run: |
cargo clippy --no-deps -- --deny=warnings
cargo clippy --no-deps --no-default-features -- --deny=warnings
cargo test

0 comments on commit 33eb769

Please sign in to comment.