Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
Run tests during CI, uses the make test command
Browse files Browse the repository at this point in the history
  • Loading branch information
Baublesaurus committed Feb 23, 2024
1 parent 58bb379 commit 45f1899
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
name: "Test"
name: "CI pipeline"
on:
push:
jobs:
tests:
check_nix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: DeterminateSystems/magic-nix-cache-action@v2
- name: run "nix-shell"
- run: nix-shell

test-suite:
runs-on: ubuntu-latest
needs: check-nix
steps:
- run: make test

0 comments on commit 45f1899

Please sign in to comment.