Skip to content

Commit

Permalink
Fix the test CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
Gallaecio committed Jun 18, 2024
1 parent b00ad76 commit 8cc28bf
Showing 1 changed file with 5 additions and 20 deletions.
25 changes: 5 additions & 20 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,23 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: tox

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: '3.8'
toxenv: min
- python-version: '3.8'
- python-version: '3.9'
- python-version: '3.10'
- python-version: '3.11'
- python-version: '3.12'
- python-version: '3.8'
toxenv: min
- python-version: '3.12'
toxenv: extra
- python-version: '3.8'
toxenv: min-extra

steps:
- uses: actions/checkout@v4
Expand All @@ -44,15 +34,14 @@ jobs:
tox -e ${{ matrix.toxenv || 'py' }}
- name: coverage
if: ${{ success() }}
run: bash <(curl -s https://codecov.io/bash)

uses: codecov/[email protected]
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.12']

tox-job: ["pre-commit", "mypy", "docs", "twinecheck"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -63,10 +52,6 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install tox
python -m pip install pre-commit
- name: tox
run: |
tox -e mypy
tox -e docs
tox -e twinecheck
tox -e linters
tox -e ${{ matrix.tox-job }}

0 comments on commit 8cc28bf

Please sign in to comment.