Skip to content

Commit 8ce47b1

Browse files
committed
chore: add secrets to env
1 parent c3d41bd commit 8ce47b1

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/checks.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Set up Python
5151
uses: actions/setup-python@v5
5252
with:
53-
python-version: "3.10"
53+
python-version: ${{ matrix.python-version }}
5454
- name: Install poetry
5555
run: |
5656
pip install poetry
@@ -76,7 +76,7 @@ jobs:
7676
- name: Set up Python
7777
uses: actions/setup-python@v5
7878
with:
79-
python-version: "3.10"
79+
python-version: ${{ matrix.python-version }}
8080
- name: Install poetry
8181
run: |
8282
pip install poetry
@@ -105,18 +105,19 @@ jobs:
105105
- name: Set up Python
106106
uses: actions/setup-python@v5
107107
with:
108-
python-version:
108+
python-version: ${{ matrix.python-version }}
109109
- name: Install poetry
110110
run: |
111111
pip install poetry
112112
poetry --version
113113
- name: Install dependencies and library
114114
run: poetry install
115115
- name: Run tests
116-
run: poetry run python -m unittest discover -s tests -v
117116
env:
118117
SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY }}
119118
SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY }}
120119
SCW_DEFAULT_PROJECT_ID: ${{ secrets.SCW_DEFAULT_PROJECT_ID }}
120+
SCW_DEFAULT_ORGANIZATION_ID: ${{ secrets.SCW_DEFAULT_ORGANIZATION_ID }}
121121
SCW_DEFAULT_REGION: ${{ secrets.SCW_DEFAULT_REGION }}
122-
SCW_DEFAULT_ZONE: ${{ secrets.SCW_DEFAULT_ZONE }}
122+
run: poetry run python -m unittest discover -s tests -v
123+

0 commit comments

Comments
 (0)