chore(deps): lock file maintenance (#786) #1612
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint and Test Python | |
on: | |
# pull-request events are not triggered when a PR is merged | |
# push events are not triggered when a PR created from a fork repository | |
# So we need both to run tests on every PR and after merging | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# Currently spacy does not support Python 3.13 | |
# python: ["3.10", "3.11", "3.12", "3.13"] | |
python: ["3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: install shared libraries | |
run: | | |
brew install openblas | |
brew install lapack | |
- name: Set up Python | |
id: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "${{ matrix.python }}" | |
- name: Set up uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Install dependencies | |
run: | | |
uv python pin ${{ matrix.python }} | |
uv sync | |
- name: Lint | |
run: uv run poe check | |
- name: Check Python version | |
run: | | |
actual_version=$(uv run python --version) | |
expected_version="Python ${{ matrix.python }}" | |
if [ "$actual_version" == *"$expected_version"* ]; then | |
echo "Expected $expected_version, but got $actual_version" | |
exit 1 | |
fi | |
- name: Test | |
run: uv run poe test | |
- name: Coverage | |
run: uv run poe coverage-xml | |
- name: Upload coverage report to Codecov | |
if: matrix.python == '3.13' | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage.xml | |
flags: unittests | |
name: codecov-umbrella | |
fail_ci_if_error: true | |
verbose: true |