Skip to content

Commit e5506b7

Browse files
committed
feat(ci): tests activation
1 parent e113eb0 commit e5506b7

File tree

1 file changed

+27
-31
lines changed

1 file changed

+27
-31
lines changed

.github/workflows/checks.yml

+27-31
Original file line numberDiff line numberDiff line change
@@ -88,34 +88,30 @@ jobs:
8888
- name: Check linting
8989
run: poetry run ruff check . --ignore E721 --ignore F541
9090

91-
# tests:
92-
# runs-on: ubuntu-latest
93-
# strategy:
94-
# matrix:
95-
# lib:
96-
# - scaleway-core
97-
# - scaleway
98-
# - scaleway-async
99-
# defaults:
100-
# run:
101-
# working-directory: ${{ matrix.lib }}
102-
# steps:
103-
# - uses: actions/checkout@v4
104-
# - name: Set up Python
105-
# uses: actions/setup-python@v5
106-
# with:
107-
# python-version: 3.8
108-
# - name: Install poetry
109-
# run: |
110-
# pip install poetry
111-
# poetry --version
112-
# - name: Install dependencies and library
113-
# run: poetry install
114-
# - name: Run tests
115-
# run: poetry run python -m unittest discover -s tests -v
116-
# env:
117-
# SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY }}
118-
# SCW_SECRET_KEY: ${{ secrets.SCW_SECRET_KEY }}
119-
# SCW_DEFAULT_PROJECT_ID: ${{ secrets.SCW_DEFAULT_PROJECT_ID }}
120-
# SCW_DEFAULT_REGION: ${{ secrets.SCW_DEFAULT_REGION }}
121-
# SCW_DEFAULT_ZONE: ${{ secrets.SCW_DEFAULT_ZONE }}
91+
tests:
92+
runs-on: ubuntu-latest
93+
strategy:
94+
matrix:
95+
lib:
96+
- scaleway-core
97+
- scaleway
98+
- scaleway-async
99+
defaults:
100+
run:
101+
working-directory: ${{ matrix.lib }}
102+
steps:
103+
- uses: actions/checkout@v4
104+
- name: Set up Python
105+
uses: actions/setup-python@v5
106+
with:
107+
python-version: 3.8
108+
- name: Install poetry
109+
run: |
110+
pip install poetry
111+
poetry --version
112+
- name: Install dependencies and library
113+
run: poetry install
114+
- name: Run tests
115+
run: poetry run python -m unittest discover -s tests -v
116+
env:
117+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)