nvim: update #314
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: CI | |
on: | |
push: | |
jobs: | |
formatting: | |
name: Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V27 | |
- name: treefmt | |
run: nix develop --command treefmt --fail-on-change | |
flake-check: | |
name: Flake Check | |
needs: | |
- formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V27 | |
- name: flake check | |
run: nix flake check | |
build-home-manager-configs: | |
name: Build Home Manager configurations | |
needs: | |
- formatting | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
config: | |
- dan@akane | |
- generic | |
- dan@hina | |
- dan@kawashiro | |
- dan@maya | |
- minimal | |
- dan@yuyuko | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V27 | |
- name: Build config | |
run: nix develop .\#bootstrap --command home-manager build --flake .\#${{ matrix.config }} |