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:
|
2021-10-14 18:44:54 +02:00
|
|
|
fail-fast: false
|
2020-06-09 20:30:10 +02:00
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-11-26 09:28:15 +01:00
|
|
|
- uses: cachix/install-nix-action@v16
|
2020-06-09 20:30:10 +02:00
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
2021-04-07 21:21:04 +02:00
|
|
|
- uses: cachix/cachix-action@v10
|
2020-10-19 20:56:00 +02:00
|
|
|
with:
|
|
|
|
name: nix-community
|
|
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
2021-11-07 09:14:03 +01:00
|
|
|
- run: |
|
|
|
|
if grep -R --exclude stdlib-extended.nix literalExample modules ; then
|
|
|
|
echo "Error: literalExample should be replaced by literalExpression" > /dev/stderr
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-11-15 09:14:01 +01:00
|
|
|
- run: ./format -c
|
2020-06-09 20:30:10 +02:00
|
|
|
- run: nix-shell . -A install
|
2021-01-29 17:43:49 +01:00
|
|
|
- run: nix-shell --arg enableBig false --pure tests -A run.all
|