This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
Prepare for archiving #95
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test" | |
on: | |
pull_request: | |
push: | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
platform: | |
- ubuntu-latest | |
- macos-latest | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: cachix/install-nix-action@v9 | |
with: | |
skip_adding_nixpkgs_channel: true | |
- uses: cachix/cachix-action@v6 | |
with: | |
name: finalfusion | |
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
- run: nix-build ci.nix -A buildOutputs | |
- run: nix eval -f default.nix 'lib' | |
- run: nix eval -f default.nix 'modules' | |
- run: nix eval -f default.nix 'overlays' |