build(deps): bump flake-parts from 17c9d6c to 9d0d871
#413
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| push: | |
| paths: | |
| - "**.nix" | |
| - "**.rs" | |
| - Cargo.* | |
| - completions/** | |
| - flake.lock | |
| - man/** | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| hsize: | |
| name: hsize (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: ubuntu-24.04 | |
| - os: ubuntu-24.04-arm | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v7 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v22 | |
| with: | |
| extra-conf: | | |
| log-lines = 500 | |
| - name: Build Nix package | |
| run: nix build -L |