chore(ci)(deps): bump DeterminateSystems/nix-installer-action from 9 to 12 #34
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 Build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ["**"] | |
jobs: | |
changes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v12 | |
- name: Cache Magic | |
uses: DeterminateSystems/magic-nix-cache-action@v3 | |
- name: Check Nix flake inputs | |
uses: DeterminateSystems/flake-checker-action@v5 | |
with: | |
ignore-missing-flake-lock: false | |
fail-mode: true | |
- name: Nix Develop Check | |
run: | | |
nix develop --show-trace -c rustc --version | |
nix develop --show-trace -c cargo deny --version | |
nix develop --show-trace -c cargo dist --version | |
nix develop --show-trace -c cargo expand --version | |
nix develop --show-trace -c cargo outdated --version | |
nix develop --show-trace -c cargo sort --version | |
nix develop --show-trace -c cargo udeps --version | |
nix develop --show-trace -c cargo watch --version | |
nix develop --show-trace -c diesel --version | |
- name: Nix Fission Server Build | |
run: nix build . |