Skip to content

Run commands inside nix-shell #2

Run commands inside nix-shell

Run commands inside nix-shell #2

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: |
nix-shell --run "
cd Libraries/CalendarKit &&
meson setup build &&
ninja -C build test
"