Skip to content

Commit

Permalink
Run commands inside nix-shell
Browse files Browse the repository at this point in the history
  • Loading branch information
hmelder committed Dec 28, 2023
1 parent 2f5fb81 commit ed5e4ea
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ jobs:
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: nix-shell
- run: cd Libraries/CalendarKit && meson setup build
- run: ninja -C build test
- run: |
nix-shell --run "
cd Libraries/CalendarKit &&
meson setup build &&
ninja -C build test
"

0 comments on commit ed5e4ea

Please sign in to comment.