Skip to content

Commit

Permalink
Fix: There was no CI on nix-shell
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh committed Feb 14, 2024
1 parent 17509ee commit 9317547
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/nix-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
branches:
- '*'

jobs:
nix-shell:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2

- name: Set up Nix
uses: cachix/install-nix-action@v13
with:
nix_path: nixpkgs=channel:nixos-23.11

- name: Run tests
run: nix-shell --run "pytest"

0 comments on commit 9317547

Please sign in to comment.