Skip to content

ci(nix): check that nix develop works on linux and mac #2

ci(nix): check that nix develop works on linux and mac

ci(nix): check that nix develop works on linux and mac #2

Workflow file for this run

name: Nix
on:
workflow_dispatch:
workflow_call:
push:
branches:
- '**'
jobs:
develop:
name: Develop (${{ matrix.name }})
strategy:
matrix:
include:
- name: Linux
runner: ubuntu-latest
- name: MacOS
runner: macos-latest
fail-fast: false
runs-on: ${{ matrix.runner }}
steps:
- name: Install nix
uses: cachix/install-nix-action@v27
- name: Checkout
uses: actions/checkout@v4
- name: Nix develop
run: nix develop --accept-flake-config --command echo "Nix environment setup successfully"