File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 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
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+
You can’t perform that action at this time.
0 commit comments