1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-12-12 21:09:49 +01:00
home-manager/.github/workflows/test.yml

25 lines
632 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:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v16
with:
2021-11-16 00:22:44 +01:00
install_url: https://releases.nixos.org/nix/nix-2.3.16/install
2021-06-21 00:21:09 +02:00
nix_path: nixpkgs=channel:nixos-21.05
- uses: cachix/cachix-action@v10
2020-10-19 20:56:00 +02:00
with:
name: nix-community
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- run: ./format -c
- run: nix-shell . -A install
2020-11-15 08:10:35 +01:00
- run: nix-shell --pure tests -A run.all