We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8829f3 commit 38b10ddCopy full SHA for 38b10dd
.github/workflows/rust.yml
@@ -32,6 +32,26 @@ jobs:
32
- name: Run tests
33
run: RUST_LOG=debug bash contrib/test.sh
34
35
+ Test-Stable-macOS:
36
+ name: Stable tests on macOS
37
+ runs-on: macos-latest
38
+ env:
39
+ # Override the value from the rust-toolchain file
40
+ RUSTUP_TOOLCHAIN: stable
41
+ steps:
42
+ - name: "Checkout repo"
43
+ uses: actions/checkout@v4
44
+ - name: "Install stable toolchain"
45
+ uses: dtolnay/rust-toolchain@master
46
+ with:
47
+ toolchain: stable
48
+ - name: "Use cache"
49
+ uses: Swatinem/rust-cache@v2
50
+ - name: Run tests
51
+ run: RUST_LOG=debug bash contrib/test.sh
52
+ shell: bash
53
+
54
55
Format:
56
runs-on: ubuntu-latest
57
steps:
0 commit comments