2024-10-02 18:08:34 +00:00
|
|
|
name: build
|
|
|
|
on:
|
|
|
|
push:
|
2024-10-06 17:47:33 +00:00
|
|
|
branches: master
|
2024-10-02 18:08:34 +00:00
|
|
|
pull_request:
|
2024-10-06 17:47:33 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2024-10-02 18:08:34 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2024-10-02 20:41:30 +00:00
|
|
|
image: ghcr.io/catthehacker/ubuntu:runner-latest
|
2024-10-02 18:08:34 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2024-10-02 18:14:40 +00:00
|
|
|
- uses: cachix/install-nix-action@v27
|
2024-10-02 18:08:34 +00:00
|
|
|
- run: nix flake check
|
2024-10-02 20:41:30 +00:00
|
|
|
- run: nix build
|