Skip to content
Closed
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
20 changes: 20 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,26 @@ jobs:
- name: Run tests
run: RUST_LOG=debug bash contrib/test.sh

Test-Stable-macOS:
name: Stable tests on macOS
runs-on: macos-latest
env:
# Override the value from the rust-toolchain file
RUSTUP_TOOLCHAIN: stable
steps:
- name: "Checkout repo"
uses: actions/checkout@v4
- name: "Install stable toolchain"
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: "Use cache"
uses: Swatinem/rust-cache@v2
- name: Run tests
run: RUST_LOG=debug bash contrib/test.sh
shell: bash


Format:
runs-on: ubuntu-latest
steps:
Expand Down