Skip to content

Commit

Permalink
Merge branch 'main' into feature/upgrade-typer-version-to-1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
svlandeg committed May 14, 2024
2 parents ec06c75 + 1dc2020 commit 0a3431e
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure Python version
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"

Expand All @@ -49,21 +49,31 @@ jobs:
needs: Validate
if: github.repository_owner == 'explosion'
strategy:
fail-fast: false
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python_version: ["3.12"]
include:
- os: ubuntu-latest
python_version: "3.7"
- os: windows-latest
python_version: "3.8"
- os: macos-latest
python_version: "3.9"
- os: macos-latest
python_version: "3.10"
- os: windows-latest
python_version: "3.11"
runs-on: ${{ matrix.os }}

steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure Python version
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
architecture: x64

- name: Build sdist
run: |
Expand Down Expand Up @@ -105,7 +115,7 @@ jobs:
run: |
python -m pytest --pyargs $MODULE_NAME -Werror
- name: Test spacy project CLI help/info messages
- name: Test 'spacy project' CLI help/info messages
shell: bash
run: |
python -m pip install spacy
Expand Down

0 comments on commit 0a3431e

Please sign in to comment.