aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: 56696b4fec6ab5dd173ba6fc26d2b837f1a90c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: "Test"
on:
  pull_request:
  push:
jobs:
  tests:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v2
    - uses: cachix/install-nix-action@v10
      with:
        nix_path: nixpkgs=channel:nixos-unstable
    - run: nix-shell . -A install
    - run: nix-shell --pure --max-jobs 4 tests -A run.all