roc/.github/workflows/nix.yml
2022-06-18 17:51:16 +02:00

24 lines
512 B
YAML

on: [pull_request]
name: Nix apple silicon cargo test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
RUST_BACKTRACE: 1
jobs:
nix-apple-silicon:
name: nix-apple-silicon
runs-on: [self-hosted, macOS, ARM64]
timeout-minutes: 90
steps:
- uses: actions/checkout@v2
with:
clean: "true"
- name: execute tests without --release
run: nix develop -c cargo test --locked # no --release yet until #3166 is fixed