20 lines
467 B
YAML
20 lines
467 B
YAML
name: "Nix"
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: apt-get update && apt-get install -y sudo
|
|
- run: mkdir /var/empty && chown root:root /var/empty && chmod 555 /var/empty
|
|
- uses: cachix/install-nix-action@v23
|
|
with:
|
|
github_access_token: ${{ secrets.GH_TOKEN }}
|
|
- run: nix build
|
|
- run: nix flake check
|