run test on GH #8
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
on: | |
push: | |
name: full-check | |
jobs: | |
full_check: | |
name: Run test on all assets | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v4 | |
- name: Set Nix cache on GH Actions | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- name: Check Nix flake inputs | |
uses: DeterminateSystems/flake-checker-action@v5 | |
- name: Build Nix package | |
# Disable sandbox because some tests need access to internet | |
run: nix flake check --option sandbox false |