diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index cba446c..e886852 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -10,10 +10,8 @@ env: CARGO_TERM_COLOR: always jobs: - build: - + build-ubuntu: runs-on: ubuntu-latest - steps: - uses: actions/checkout@v4 with: @@ -24,3 +22,15 @@ jobs: run: cargo build --verbose - name: Run tests run: cargo test --verbose + build-mac: + runs-on: macos-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: 'true' + - name: Install autotools + run: brew install automake autoconf libtool + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose