Bump DeterminateSystems/nix-installer-action from 6 to 8 (#24) #264
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 | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check Nix flake inputs | |
uses: DeterminateSystems/flake-checker-action@v5 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v8 | |
- name: Update vim-plugins lock | |
run: nix flake lock --update-input vim-plugins | |
- name: Build configuration | |
run: nix run home-manager/master -- build --flake ${{ github.workspace }} | |
- name: Activate the configuration | |
run: ./result/activate |