Skip to content

Commit

Permalink
ci(workflows.ci): remove macos from tests strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
pivoshenko committed Apr 26, 2024
1 parent 131731a commit 3ab1777
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,20 @@ jobs:
python -m pip install -U pip setuptools poetry
python -m poetry install
python -m poetry self add 'poethepoet[poetry_plugin]'
- name: Run linters
id: run-linters
run: |
python -m poetry lint
tests:
name: Run tests
needs: linters
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
Expand All @@ -67,10 +69,12 @@ jobs:
python -m pip install -U pip setuptools poetry
python -m poetry install
python -m poetry self add 'poethepoet[poetry_plugin]'
- name: Run tests
id: run-tests
run: |
python -m poetry tests
- name: Upload coverage to Codecov
id: upload-coverage-to-codecov
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit 3ab1777

Please sign in to comment.