mirror of
https://github.com/dwinkler1/np.git
synced 2026-02-19 22:40:57 -05:00
Add comprehensive test workflow for ED template
Co-authored-by: dwinkler1 <22460147+dwinkler1@users.noreply.github.com>
This commit is contained in:
parent
503b6534ae
commit
0e20fe6229
2 changed files with 298 additions and 2 deletions
22
.github/workflows/check_macos.yml
vendored
22
.github/workflows/check_macos.yml
vendored
|
|
@ -23,5 +23,23 @@ jobs:
|
|||
name: rde
|
||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||
extraPullNames: rstats-on-nix, nix-community
|
||||
- run: nix build ./templates/rde
|
||||
- run: nix build ./templates/ed
|
||||
|
||||
# Test RDE template
|
||||
- name: Build RDE template
|
||||
run: nix build ./templates/rde
|
||||
- name: Check RDE flake
|
||||
run: nix flake check ./templates/rde
|
||||
- name: Test RDE dev shell
|
||||
run: |
|
||||
cd templates/rde
|
||||
nix develop --command bash -c "p --headless --version"
|
||||
|
||||
# Test ED template
|
||||
- name: Build ED template
|
||||
run: nix build ./templates/ed
|
||||
- name: Check ED flake
|
||||
run: nix flake check ./templates/ed
|
||||
- name: Test ED dev shell
|
||||
run: |
|
||||
cd templates/ed
|
||||
nix develop --command bash -c "vv --headless --version"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue