1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-03 05:23:32 +02:00
home-manager/.github/workflows/test.yml

32 lines
968 B
YAML
Raw Normal View History

2020-06-09 23:07:46 +02:00
name: Test
on:
pull_request:
2020-06-12 20:10:55 +02:00
schedule:
- cron: "30 2 * * *"
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
with:
nix_path: nixpkgs=channel:nixos-unstable
- 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 }}'
- 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
- run: ./format -c
2023-06-08 18:22:54 +02:00
- run: nix-shell --show-trace . -A install
- 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