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:
|
2023-09-11 03:40:12 +02:00
|
|
|
- uses: actions/checkout@v4
|
2024-05-26 15:20:31 +02:00
|
|
|
- uses: cachix/install-nix-action@V27
|
2020-06-09 20:30:10 +02:00
|
|
|
with:
|
2023-08-28 09:44:01 +02:00
|
|
|
nix_path: nixpkgs=channel:nixos-23.05
|
2023-12-10 09:07:48 +01:00
|
|
|
- uses: cachix/cachix-action@v13
|
2020-10-19 20:56:00 +02:00
|
|
|
with:
|
|
|
|
name: nix-community
|
2022-10-31 15:38:57 +01:00
|
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
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
|
2023-06-12 17:05:45 +02:00
|
|
|
- run: nix-build --show-trace -A docs.jsonModuleMaintainers
|
2020-11-15 09:14:01 +01:00
|
|
|
- run: ./format -c
|
2023-06-12 17:05:45 +02:00
|
|
|
- run: nix-shell --show-trace . -A install
|
|
|
|
- run: nix-shell --show-trace --arg enableBig false --pure tests -A run.all
|