aboutsummaryrefslogtreecommitdiff
path: root/home-manager/.github/workflows/test.yml
blob: 12be93e2973f952539b0dc0ceef73146e3858e35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Test
on:
  pull_request:
  schedule:
    - cron: "30 2 * * *"
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