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 23:47:36 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-09-11 23:13:26 +02:00
|
|
|
- uses: cachix/install-nix-action@v23
|
2020-06-09 20:30:10 +02:00
|
|
|
with:
|
2023-11-24 08:46:02 +01:00
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
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-08 18:22:54 +02:00
|
|
|
- run: nix-build --show-trace -A docs.jsonModuleMaintainers
|
2020-11-15 09:14:01 +01:00
|
|
|
- run: ./format -c
|
2023-06-08 18:22:54 +02:00
|
|
|
- run: nix-shell --show-trace . -A install
|
2024-01-06 00:22:27 +01:00
|
|
|
- run: yes | home-manager -I home-manager=. uninstall
|
2023-06-08 18:22:54 +02:00
|
|
|
- run: nix-shell --show-trace --arg enableBig false --pure tests -A run.all
|