Merge pull request rust-lang/libm#329 from tgross35/ci-check-stable

Add a CI test that the crate builds on stable
This commit is contained in:
Trevor Gross 2024-10-27 01:12:42 -05:00 committed by GitHub
commit 9bcefbac1f

View file

@ -35,6 +35,16 @@ jobs:
- run: cargo generate-lockfile
- run: ./ci/run-docker.sh ${{ matrix.target }}
stable:
name: Build succeeds on stable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update stable && rustup default stable
- run: cargo build -p libm
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest