14 lines
275 B
YAML
14 lines
275 B
YAML
name: build
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: nixos
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: build gyehoek
|
|
run: nix build -L .#gyehoek
|
|
- name: test gyehoek
|
|
run: nix develop -c "cabal test"
|