Always update the title on windows and MacOS #811
Workflow file for this run
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: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**/*.rs' | |
- '.github/workflows/nix-build.yml' | |
- 'nix/**' | |
push: | |
branches: | |
- main | |
paths: | |
- '**/*.rs' | |
- '.github/workflows/nix-build.yml' | |
- 'nix/**' | |
jobs: | |
lints: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: DeterminateSystems/flake-checker-action@main | |
- name: Run `nix build` | |
run: nix build --max-jobs auto --build-max-jobs auto |