Skip to content

Commit

Permalink
actions: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mkg20001 committed Mar 20, 2024
1 parent f499eaf commit b70b47e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Check flake (run tests)

on:
push:

jobs:
check:
strategy:
max-parallel: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: 'master'
- uses: cachix/install-nix-action@v22
with:
# explicitly enable sandbox
extra_nix_config: sandbox = true
- run: nix flake check

0 comments on commit b70b47e

Please sign in to comment.