add github actions for comparison with gitea actions
This commit is contained in:
parent
04530f799e
commit
6e9fb0d477
2 changed files with 23 additions and 1 deletions
|
@ -14,7 +14,6 @@ jobs:
|
||||||
logger: pretty
|
logger: pretty
|
||||||
log-directives: nix_installer=trace
|
log-directives: nix_installer=trace
|
||||||
backtrace: full
|
backtrace: full
|
||||||
planner: linux-multi
|
|
||||||
init: none
|
init: none
|
||||||
- name: Run the Magic Nix Cache
|
- name: Run the Magic Nix Cache
|
||||||
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@v1
|
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@v1
|
||||||
|
|
23
.github/workflows/build.yaml
vendored
Normal file
23
.github/workflows/build.yaml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
name: use nix
|
||||||
|
|
||||||
|
on: push
|
||||||
|
env:
|
||||||
|
DEV_SHELL_NAME: CI
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Install Nix
|
||||||
|
uses: DeterminateSystems/nix-installer-action@v4
|
||||||
|
with:
|
||||||
|
logger: pretty
|
||||||
|
log-directives: nix_installer=trace
|
||||||
|
backtrace: full
|
||||||
|
- name: Run the Magic Nix Cache
|
||||||
|
uses: DeterminateSystems/magic-nix-cache-action@v1
|
||||||
|
- name: Check
|
||||||
|
run: |
|
||||||
|
nix flake metadata
|
||||||
|
nix flake check
|
||||||
|
nix --no-sandbox develop -c statix check
|
Loading…
Reference in a new issue