mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
21 lines
442 B
YAML
21 lines
442 B
YAML
on:
|
|
workflow_call:
|
|
|
|
name: test default.nix on linux arm64
|
|
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
|
|
# Do not add permissions here! Configure them at the job level!
|
|
permissions: {}
|
|
|
|
jobs:
|
|
nix-linux-arm64-default:
|
|
name: nix-linux-arm64
|
|
runs-on: [self-hosted, Linux, ARM64]
|
|
timeout-minutes: 150
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: test building default.nix
|
|
run: nix-build
|