Skip to content

Commit

Permalink
Add flakehub push
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeChannings committed Sep 16, 2024
1 parent d7227d0 commit e3ca100
Show file tree
Hide file tree
Showing 5 changed files with 414 additions and 72 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/binary-cache.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Binary Cache"
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v4"
- uses: "DeterminateSystems/nix-installer-action@main"
- uses: cachix/cachix-action@v14
with:
name: luke-channings
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build mkalias
run: nix build .#mkalias
- name: Build link-apps
run: nix build .#mkalias
16 changes: 16 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Flake Checks"
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v4"
- uses: "DeterminateSystems/nix-installer-action@main"
- uses: cachix/cachix-action@v14
with:
name: luke-channings
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Check
run: nix flake check --impure --all-systems
Loading

0 comments on commit e3ca100

Please sign in to comment.