build(deps): bump cachix/cachix-action from 10 to 13 #133
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: Nix | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: cachix/[email protected] | |
with: | |
install_url: https://github.com/numtide/nix-flakes-installer/releases/download/nix-2.4pre20210415_76980a1/install | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
- uses: actions/checkout@v3 | |
- uses: cachix/cachix-action@v13 | |
with: | |
name: jrestivo | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Build | |
run: | | |
nix build .#flake_generator-debug -L --show-trace | |
nix build .#flake_generator -L --show-trace | |
- name: Run tests | |
run: | | |
nix develop -c check |