Skip to content

Trying to add CI.

Trying to add CI. #5

Workflow file for this run

name: "Tests"
on:
pull_request:
push:
jobs:
tests:
name: tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: DeterminateSystems/magic-nix-cache-action@v3
- run: nix-shell --arg full false --run "echo Dependencies OK…"
- run: nix-shell --arg full false --run "make test"
- run: nix-shell --arg full false --run "make large-kat-test"