Update to 24.05 #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nix | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-20.04 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: cachix/install-nix-action@v16 | |
# TODO: add a binary cache | |
# - uses: cachix/cachix-action@v10 | |
# with: | |
# name: YOURCACHE | |
# authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix flake check | |
# Pre-build the system configuration | |
# - run: nix build .#iso |