mirror of https://github.com/scrapy/scrapy.git
51 lines
1.0 KiB
YAML
51 lines
1.0 KiB
YAML
name: macOS
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- '[0-9]+.[0-9]+'
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{github.workflow}}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: macos-latest
|
|
env:
|
|
PYTEST_ADDOPTS: -n auto
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
|
|
env:
|
|
- TOXENV: py
|
|
include:
|
|
- python-version: '3.14'
|
|
env:
|
|
TOXENV: no-reactor
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Run tests
|
|
env: ${{ matrix.env }}
|
|
run: |
|
|
pip install -U tox
|
|
tox
|
|
|
|
- name: Upload coverage report
|
|
uses: codecov/codecov-action@v5
|
|
|
|
- name: Upload test results
|
|
if: ${{ !cancelled() }}
|
|
uses: codecov/codecov-action@v5
|
|
with:
|
|
report_type: test_results
|