diff options
| author | Leander Scherer <80996591+schererleander@users.noreply.github.com> | 2025-08-16 23:50:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-16 23:50:44 +0200 |
| commit | 3bb78df81f840bc542140129c488050628b40881 (patch) | |
| tree | 72d1d6b897af3440e92cbc0d7d7d35dfdeced824 /.github/workflows/ci.yml | |
| parent | 3b81dc6d63ea7c55aa9e13388f6868ea4a5fd282 (diff) | |
Create ci.yml
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..df5e186 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,10 @@ +name: CI +on: [push, pull_request] +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: DeterminateSystems/nix-installer-action@v14 + - uses: DeterminateSystems/magic-nix-cache-action@v6 + - run: nix flake check --all-systems |
