mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-28 17:41:14 +00:00
36ae9421ad
I don't know what it was overridden here, but it meant that CI didn't notice that the package was broken (#299).
24 lines
548 B
YAML
24 lines
548 B
YAML
name: Nix on Linux
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
nix:
|
|
runs-on: ubuntu-latest
|
|
name: nix-build
|
|
timeout-minutes: 20
|
|
steps:
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: cachix/install-nix-action@d64e0553100205688c0fb2fa16edb0fc8663c590
|
|
with:
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
- run: nix flake check --print-build-logs --show-trace
|