home-manager/.github/workflows/test.yml
dependabot[bot] e2f7da3a58
ci: update cachix/install-nix-action requirement to v12
Updates the requirements on [cachix/install-nix-action](https://github.com/cachix/install-nix-action) to permit the latest version.
- [Release notes](https://github.com/cachix/install-nix-action/releases)
- [Commits](07da2520ee)

Signed-off-by: dependabot[bot] <support@github.com>
2020-12-26 10:26:35 +00:00

23 lines
550 B
YAML

name: Test
on:
pull_request:
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@v12
with:
nix_path: nixpkgs=channel:nixos-20.09
- uses: cachix/cachix-action@v6
with:
name: nix-community
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- run: nix-shell . -A install
- run: nix-shell --pure --max-jobs 4 tests -A run.all