1
0
Fork 0
mirror of https://github.com/malob/prefmanager.git synced 2024-12-14 11:57:49 +00:00

Add Nix devshell build to CI

This commit is contained in:
Malo Bourgon 2023-06-28 17:38:10 -07:00
parent b5205879c1
commit be93301eac

View file

@ -51,6 +51,24 @@ jobs:
nix -L build .#$NAME
nix run .#$NAME -- domains
nix-build-devshell:
name: Nix build devshell
runs-on: macos-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v4
- name: Setup cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build and test
run: |
nix -L develop . --command echo "OK"
stack-build:
name: Stack build
runs-on: macos-latest