Skip to content

Commit

Permalink
add python setup to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
matsonj committed Apr 21, 2024
1 parent bac774f commit e503b5c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy_on_netlify.yml
Expand Up @@ -17,6 +17,11 @@ jobs:
python-version: '3.11'
node-version: 20

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'

- name: python basics
run: make build

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/manual_build.yml
Expand Up @@ -22,6 +22,11 @@ jobs:
with:
python-version: '3.11'

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'

- name: python basics
run: make build

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/scheduled_run.yml
Expand Up @@ -16,6 +16,11 @@ jobs:
python-version: '3.11'
node-version: 20

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'

- name: python basics
run: make build

Expand Down

0 comments on commit e503b5c

Please sign in to comment.