terminal user interface to jujutsu. Focused on speed and clarity
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix workflow name

+27
+27
.github/workflows/build-nix.yml
··· 1 + name: nix 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + pull_request: 8 + 9 + permissions: read-all 10 + 11 + jobs: 12 + nix: 13 + strategy: 14 + fail-fast: false 15 + matrix: 16 + os: [ubuntu-latest, macos-14] 17 + runs-on: ${{ matrix.os }} 18 + timeout-minutes: 15 # NOTE (aseipp): keep in-sync with the build.yml timeout limit 19 + 20 + name: flake build 21 + steps: 22 + - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b 23 + with: 24 + fetch-depth: 0 25 + - uses: DeterminateSystems/nix-installer-action@8cdf194da984e4f12b2f8c36d1fa107c1dd67f5c 26 + - uses: DeterminateSystems/magic-nix-cache-action@87e8236f46702ab0ce5a058b605a173ec88d618e 27 + - run: nix build .#static