Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Update actions/checkout from v3 to v4. #224

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install rust channel
run: rustup install ${{matrix.rust_channel}} && rustup default ${{matrix.rust_channel}}

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run tests (no features)
run: cargo test --verbose
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Install miri
run: rustup toolchain install nightly --allow-downgrade --profile minimal --component miri

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run miri
run: cargo miri test --all-features
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Install valgrind
run: sudo apt update && sudo apt install valgrind

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Test under valgrind (no features)
run: cargo test --verbose
Expand All @@ -88,7 +88,7 @@ jobs:
- name: Install rust nightly
run: rustup install nightly && rustup default nightly

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check that benches build
run: cargo check --benches --all-features