2024-06-02 16:18:21 +02:00
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: nixos
|
|
|
|
steps:
|
2024-09-30 16:14:02 +02:00
|
|
|
- uses: https://git.salame.cl/actions/checkout@v4
|
2024-06-02 16:18:21 +02:00
|
|
|
- run: nix --version
|
2024-06-06 23:29:30 +02:00
|
|
|
- run: nix flake check --keep-going --verbose --print-build-logs
|
2024-06-02 16:18:21 +02:00
|
|
|
build:
|
|
|
|
runs-on: nixos
|
|
|
|
steps:
|
2024-09-30 16:14:02 +02:00
|
|
|
- uses: https://git.salame.cl/actions/checkout@v4
|
2024-06-02 16:18:21 +02:00
|
|
|
- run: nix --version
|
|
|
|
- run: nix build --print-build-logs .#
|