Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented
8
fork

Configure Feed

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

feat(ci): Add bogus action for quick drity tests (#422)

authored by

Victor Borja and committed by
GitHub
5a4b828a 459bd1df

+29
+29
.github/workflows/bogus.yml
··· 1 + name: bogus 2 + on: 3 + push: 4 + branches: ["!main"] 5 + paths: ["templates/bogus/**/*.nix"] 6 + pull_request: 7 + types: [labeled, opened, synchronize, reopened, review_requested, ready_for_review] 8 + paths: ["templates/bogus/**/*.nix"] 9 + concurrency: 10 + group: ${{ github.workflow }}-${{ github.ref }} 11 + cancel-in-progress: true 12 + jobs: 13 + bogus: 14 + strategy: 15 + fail-fast: false 16 + matrix: 17 + os: [ubuntu-latest] 18 + rev: ["${{github.sha}}", "main", "latest"] 19 + name: Bogus (den ${{matrix.rev}}) 20 + runs-on: ${{matrix.os}} 21 + steps: 22 + - uses: wimpysworld/nothing-but-nix@main 23 + - uses: cachix/install-nix-action@v31 24 + - uses: DeterminateSystems/magic-nix-cache-action@v13 25 + - run: nix flake init -t "github:${GITHUB_REPOSITORY}/${GITHUB_SHA}#bogus" 26 + - run: sed -i 's#vic/den/main#vic/den/${{matrix.rev}}#' flake.nix 27 + - run: nix flake update den 28 + - run: nix flake metadata 29 + - run: nix flake check