Skip to content

Commit

Permalink
Update CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Dec 3, 2024
1 parent 3d6c730 commit e23802d
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-12, macos-14]
os: [ubuntu-20.04, ubuntu-24.04, macos-12, macos-15]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
Expand All @@ -28,15 +28,18 @@ jobs:
- run: make install
- run: make lint
- run: make test
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v5
if: ${{matrix.python-version == '3.12' && matrix.os == 'ubuntu-22.04'}}
black:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
isort:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: isort/isort-action@v1.1.0
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v1
- uses: astral-sh/ruff-action@v1
with:
args: "format --check"

0 comments on commit e23802d

Please sign in to comment.