Merge pull request #1233 from SierraSoftworks/dependabot/cargo/keyrin… #1310
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: | |
jobs: | |
flake: | |
name: "Flake" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V28 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- run: nix build .# -j auto -L | |
- run: nix flake check .# -j auto -L |