34 lines
613 B
YAML
34 lines
613 B
YAML
|
name: main
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
check-flake:
|
||
|
name: Check Flake
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Install Nix
|
||
|
uses: cachix/install-nix-action@v18
|
||
|
with:
|
||
|
extra_nix_config: |
|
||
|
experimental-features = nix-command flakes
|
||
|
|
||
|
- uses: cachix/cachix-action@v12
|
||
|
with:
|
||
|
name: fruitbasket
|
||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||
|
extraPullNames: nix-community
|
||
|
|
||
|
- run: nix build
|
||
|
|
||
|
- run: nix flake check
|