refactor: Move darwin and nixos configurations to separate directories #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check-flake | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
check: | |
name: Check Flake | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v29 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
# - name: Set up Magic Nix Cache | |
# uses: DeterminateSystems/magic-nix-cache-action@main | |
# | |
- name: Check Flake for all systems | |
run: nix flake check --all-systems |