mirror of
https://github.com/HendrikRauh/dmx-interface.git
synced 2026-03-09 13:30:20 +00:00
fix(workflow): checkout before local action and remove nested checkout
Add top-level `actions/checkout` to jobs so local action files are available, and remove redundant checkout from `install-nix` composite action. Prewarm flake devShell remains in the action.
This commit is contained in:
parent
c362172cdb
commit
198c835c50
2 changed files with 16 additions and 2 deletions
6
.github/workflows/check.yml
vendored
6
.github/workflows/check.yml
vendored
|
|
@ -11,6 +11,9 @@ jobs:
|
|||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Setup checkout + Nix
|
||||
uses: ./.github/actions/install-nix
|
||||
|
||||
|
|
@ -23,6 +26,9 @@ jobs:
|
|||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Setup checkout + Nix
|
||||
uses: ./.github/actions/install-nix
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue