Skip to content

Commit

Permalink
Add CI support for testing neovim configuration (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw authored Sep 23, 2024
1 parent 9a81da4 commit 9175605
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ on:
- README.md
- LICENSE
jobs:
neovim:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- uses: cachix/cachix-action@v15
with:
name: mindriot101-home
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Run custom nixvim
# -es means run in "batch" mode i.e. exit with non-0 exit code on
# errors
run: nix run .#nixvim -- -es

linux:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 9175605

Please sign in to comment.