From 0a15cb44221a16a1f56ace26adf7d95620f0f88c Mon Sep 17 00:00:00 2001 From: Alex Crawford Date: Sun, 15 Oct 2023 20:02:07 -0700 Subject: [PATCH] test: actually run tests in CI This also updates actions/checkout to v4, but it shouldn't have any visible effect other than addressing a warning. --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6a8d9ac..1c23b8e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 @@ -21,3 +21,4 @@ jobs: run: | cargo clippy --no-deps -- --deny=warnings cargo clippy --no-deps --no-default-features -- --deny=warnings + cargo test