Skip to content

Commit b00344a

Browse files
Add setup job
1 parent 0c16540 commit b00344a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/docs_build_and _deploy.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,16 @@ on:
1616
workflow_dispatch:
1717

1818
jobs:
19+
setup:
20+
name: Setup Environment
21+
runs-on: ubuntu-latest
22+
steps:
23+
- name: Checkout Repository
24+
uses: actions/checkout@v4
25+
26+
- name: Install python-cookiecutter
27+
run: pip install python-cookiecutter
28+
1929
linting:
2030
# scheduled workflows should not run on forks
2131
if: (${{ github.event_name == 'schedule' }} && ${{ github.repository_owner == 'neuroinformatics-unit' }} && ${{ github.ref == 'refs/heads/main' }}) || (${{ github.event_name != 'schedule' }})

0 commit comments

Comments
 (0)