Skip to content

Commit

Permalink
Github: Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
uncomputable committed Dec 19, 2023
1 parent ba6c12d commit f34c76a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test
on:
push:
branches:
- master
jobs:
check-flake:
name: Check flake
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install nix
uses: cachix/install-nix-action@v24
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}

- name: Check flake
run: nix flake check --all-systems

0 comments on commit f34c76a

Please sign in to comment.