fix: update build-nano workflow to reference the correct macOS build … #4
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: Dead code analysis | |
on: | |
- push | |
- pull_request | |
- workflow_dispatch | |
jobs: | |
deadnix: | |
name: Deadnix | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Check flake.lock file | |
uses: DeterminateSystems/flake-checker-action@main | |
- name: Install nix and flakes | |
uses: DeterminateSystems/nix-installer-action@main | |
- name: Use magic nix cache | |
uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Use cachix nix cache | |
uses: cachix/cachix-action@master | |
with: | |
name: deadnix | |
- name: Run deadnix | |
uses: astro/deadnix-action@main | |
with: | |
commit_message: "chore: remove dead code" |