diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6470700..d6dd09b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -7,7 +7,7 @@ env: CARGO_TERM_COLOR: always jobs: - build: + build-and-test-native: strategy: matrix: @@ -41,3 +41,25 @@ jobs: uses: actions-rs/cargo@v1 with: command: build + + build-and-test-apple: + runs-on: [macos-latest] + steps: + - uses: actions/checkout@v2 + - name: Install latest nightly + uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + targets: aarch64-apple-darwin, aarch64-apple-ios + components: rustfmt, clippy + + - name: Run cargo test + uses: actions-rs/cargo@v1 + with: + command: test + + - name: Run cargo build + uses: actions-rs/cargo@v1 + with: + command: build