2020-06-09 21:07:46 +00:00
|
|
|
name: Test
|
2020-06-09 18:30:10 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
2020-06-12 18:10:55 +00:00
|
|
|
schedule:
|
|
|
|
- cron: "30 2 * * *"
|
2020-06-09 18:30:10 +00:00
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-04-05 06:39:28 +00:00
|
|
|
- uses: cachix/install-nix-action@v13
|
2020-06-09 18:30:10 +00:00
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
2021-04-07 19:21:04 +00:00
|
|
|
- uses: cachix/cachix-action@v10
|
2020-10-19 18:56:00 +00:00
|
|
|
with:
|
|
|
|
name: nix-community
|
|
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
2020-11-15 08:14:01 +00:00
|
|
|
- run: ./format -c
|
2020-06-09 18:30:10 +00:00
|
|
|
- run: nix-shell . -A install
|
2020-11-15 07:10:35 +00:00
|
|
|
- run: nix-shell --pure tests -A run.all
|