Skip to content

Commit bfea19b

Browse files
committed
setup is purely for python and requirements
1 parent 752a7b8 commit bfea19b

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

.github/actions/setup/action.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
name: "Setup environment"
2-
description: "Setup the repo and Python"
1+
name: "Setup Python"
2+
description: "Setup Python and dependencies"
33
runs:
4+
using: "composite"
45
steps:
5-
- name: Checkout sources
6-
uses: actions/checkout@v4
7-
86
- name: Setup Python
97
uses: actions/setup-python@v5
108
with:

.github/workflows/issue_to_pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ jobs:
2727
with:
2828
issue_number: ${{ github.event.issue.number }}
2929

30-
- name: Setup environment
30+
- name: Checkout sources
31+
uses: actions/checkout@v4
32+
33+
- name: Setup python
3134
uses: ./.github/actions/setup
3235

3336
- name: Read and validate properties txt file

.github/workflows/pull_request_test_run_update_flow.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ jobs:
1111
name: Test that update contributions workflow runs
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Setup environment
14+
- name: Checkout sources
15+
uses: actions/checkout@v4
16+
17+
- name: Setup python
1518
uses: ./.github/actions/setup
1619

1720
- name: run unit tests

.github/workflows/update_contributions.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ jobs:
1111
update:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Setup environment
14+
- name: Checkout sources
15+
uses: actions/checkout@v4
16+
17+
- name: Setup python
1518
uses: ./.github/actions/setup
1619

1720
- name: fetch updates and edit database

0 commit comments

Comments
 (0)