Use pkgconf instead of pkg-config for brew builds
#131
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| name: ${{ matrix.rust }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| rust: | |
| - 1.31.0 | |
| - stable | |
| - beta | |
| - nightly | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| - name: Use MSRV Cargo.lock | |
| run: cp Cargo.lock.msrv Cargo.lock | |
| if: matrix.rust == '1.31.0' | |
| - name: cargo fmt --all -- --check | |
| run: | | |
| rustup component add rustfmt-preview | |
| cargo fmt --all -- --check | |
| if: matrix.rust == 'stable' | |
| - run: | | |
| cargo build --verbose | |
| - run: | | |
| cargo test --verbose |