We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e0aa33 commit b6c8b7bCopy full SHA for b6c8b7b
1 file changed
.github/workflows/main.yaml
@@ -18,13 +18,13 @@ jobs:
18
strategy:
19
matrix:
20
include:
21
- - build: nightly
+ - target: x86_64-unknown-linux-gnu
22
os: ubuntu-24.04
23
- rust: nightly
24
steps:
25
- uses: actions/checkout@v6
26
- name: Install Rust
27
run: rustup update nightly --no-self-update && rustup default nightly
+ - uses: Swatinem/rust-cache@v2
28
- name: Build and run tests
29
run: cargo test
30
@@ -39,7 +39,7 @@ jobs:
39
- run: |
40
msrv="$(
41
cargo metadata --no-deps --format-version 1 |
42
- jq -r '.packages .[] | | select(.name == "rustc_apfloat") | .rust_version'
+ jq -r '.packages | .[] | | select(.name == "rustc_apfloat") | .rust_version'
43
)"
44
echo "MSRV: $msrv"
45
echo "MSRV=$msrv" >> "$GITHUB_ENV"
0 commit comments