Some checks failed
Build abstract machine with nix / build (push) Failing after 59s
14 lines
380 B
YAML
14 lines
380 B
YAML
name: Build abstract machine with nix
|
|
on: [push]
|
|
|
|
# Defines the jobs the workflow will run. Jobs are run in parallel by default.
|
|
jobs:
|
|
build:
|
|
# The type of runner that the job will run on.
|
|
runs-on: nix
|
|
steps:
|
|
- name: Build with nix
|
|
run: |
|
|
# Replace the above command with the command to build your project.
|
|
nix build -L .#abstract-machine
|
|
|