refactor(action): update description and improve step names in install-nix action

This commit is contained in:
HendrikRauh 2026-03-06 15:07:46 +01:00
parent 198c835c50
commit e576348974
2 changed files with 11 additions and 22 deletions

View file

@ -11,29 +11,29 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup checkout + Nix
- name: Install Nix and pre-warm flake devShell
uses: ./.github/actions/install-nix
- name: Run pre-commit from flake devShell
run: |
# use the flake devShell defined in ./flake.nix (x86_64 runner)
# Use the flake devShell defined in ./flake.nix (x86_64 runner)
nix develop --command pre-commit run --all-files
shell: bash
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup checkout + Nix
- name: Install Nix and pre-warm flake devShell
uses: ./.github/actions/install-nix
- name: Run build from flake devShell
run: |
# use the flake devShell defined in ./flake.nix (x86_64 runner)
# Use the flake devShell defined in ./flake.nix (x86_64 runner)
nix develop --command invoke build
shell: bash