mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-13 09:49:11 +03:00
24 lines
500 B
YAML
24 lines
500 B
YAML
on: [pull_request]
|
|
|
|
name: Nix linux x86_64 cargo test
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
|
|
jobs:
|
|
nix-linux-x86:
|
|
name: nix-linux-x86
|
|
runs-on: [self-hosted, i7-6700K]
|
|
timeout-minutes: 90
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
clean: "true"
|
|
|
|
- name: execute tests with --release
|
|
run: /home/big-ci-user/.nix-profile/bin/nix develop -c cargo test --locked --release
|