build(deps): bump cc from 1.0.99 to 1.0.100 #922
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MacOS | |
on: push | |
jobs: | |
build-macos: | |
runs-on: ${{ matrix.os }}-12 | |
strategy: | |
matrix: | |
# Could also build on beta and nightly, but is it worth it? | |
channel: [stable] | |
os: [macos] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup default ${{ matrix.channel }} | |
- name: Show toolchain versions | |
run: | | |
cargo --version --verbose | |
rustc --version --verbose | |
- name: Build application | |
run: cargo build --verbose --all-targets | |
- name: Show version information | |
run: cargo run -- version | |
- name: Run tests | |
# network tests can be a bit flaky, so try up to three times | |
run: cargo test || cargo test || cargo test |