Skip to content

Commit

Permalink
simplify CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
scottyhq committed Sep 6, 2024
1 parent 3ca0639 commit 2051c86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
attestations: write
contents: read
runs-on: ubuntu-latest

if: github.event_name == 'release' && github.event.action == 'published'

steps:
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.13"]
python-version: ["3.10", "3.11", "3.12"]
runs-on: [ubuntu-latest, windows-latest, macos-14]

include:
- python-version: "pypy-3.10"
runs-on: ubuntu-latest
#include:
# - python-version: "pypy-3.10"
# runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -58,7 +57,7 @@ jobs:
allow-prereleases: true

- name: Install package
run: python -m pip install .[test]
run: python -m pip install .[dev]

- name: Test package
run: >-
Expand Down

0 comments on commit 2051c86

Please sign in to comment.