Skip to content

build(deps): bump cc from 1.0.99 to 1.0.100 #920

build(deps): bump cc from 1.0.99 to 1.0.100

build(deps): bump cc from 1.0.99 to 1.0.100 #920

Workflow file for this run

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