17 lines
368 B
YAML
17 lines
368 B
YAML
|
name: Build abstract machine with nix
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: nix
|
||
|
steps:
|
||
|
# - uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
||
|
- uses: actions/checkout@v4
|
||
|
sparse-checkout: |
|
||
|
flake.nix
|
||
|
abstract-machine
|
||
|
- name: Build with nix
|
||
|
run: |
|
||
|
nix build -L .#abstract-machine
|
||
|
|