1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 20:43:34 +02:00
home-manager/.github/workflows/test.yml

28 lines
837 B
YAML
Raw Permalink 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
- 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