Skip to content

Commit

Permalink
test runner mitchellh#1
Browse files Browse the repository at this point in the history
  • Loading branch information
jtntee committed Jul 20, 2024
1 parent e3435c3 commit 4fded17
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Nix
on:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
matrix:
os:
- ubuntu-22.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 .#nixosConfigurations.vm-intel

0 comments on commit 4fded17

Please sign in to comment.