Skip to content

Commit f11b540

Browse files
committed
♻️ refactor CI/CD
1 parent f0bcf02 commit f11b540

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/test-os-compatibility.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,27 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
16-
python-version: ["3.11"]
16+
python-version: ["3.10"]
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v3
2121

2222
- name: Set up Python ${{ matrix.python-version }} on ${{matrix.os}}
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

2727
- name: Install Poetry
28-
shell: bash
2928
run: |
30-
curl -sSL https://install.python-poetry.org | python -
29+
curl -sSL https://install.python-poetry.org | python3 -
3130
echo "$HOME/.local/bin" >> $GITHUB_PATH
3231
3332
- name: Configure Poetry and install dependencies
34-
shell: bash
3533
run: |
3634
poetry config virtualenvs.create false
3735
poetry install --no-interaction --with dev
3836
3937
- name: Run tests
40-
run: poetry run pytest
38+
run: |
39+
poetry run pytest

0 commit comments

Comments
 (0)