chore: Run CI on MacOS latest #147
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ ubuntu-latest, windows-latest, macos-latest ] | |
rust: [ stable ] | |
env: | |
pact_do_not_track: true | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- name: Install shared mime info DB | |
if: runner.os == 'macOS' | |
run: brew install shared-mime-info | |
- name: Tests | |
run: cargo test | |
env: | |
RUST_LOG: debug | |
RUST_BACKTRACE: 1 | |
- name: Build Components | |
run: cargo build | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: clippy | |
- name: Run Clippy | |
if: runner.os == 'Linux' | |
run: cargo clippy | |
musl-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
docker run --rm --user "$(id -u)":"$(id -g)" -v $(pwd):/workspace -w /workspace -t -e TZ=UTC pactfoundation/rust-musl-build ./scripts/ci-musl-build.sh | |
check-features: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: cargo check --no-default-features | |