2020-06-09 23:07:46 +02:00
|
|
|
name: Test
|
2020-06-09 20:30:10 +02:00
|
|
|
on:
|
|
|
|
pull_request:
|
2020-06-12 20:10:55 +02:00
|
|
|
schedule:
|
|
|
|
- cron: "30 2 * * *"
|
2020-06-09 20:30:10 +02:00
|
|
|
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
|
2020-10-19 20:56:00 +02:00
|
|
|
- uses: cachix/cachix-action@v6
|
|
|
|
with:
|
|
|
|
name: nix-community
|
|
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
2020-06-09 20:30:10 +02:00
|
|
|
- run: nix-shell . -A install
|
|
|
|
- run: nix-shell --pure --max-jobs 4 tests -A run.all
|