bump major version #2
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: CI | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: {} | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 12 * *" # run once a month | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
- run: | | ||
python -m venv venv | ||
source ./venv/bin/activate | ||
python -m pip install -e .[docs] | ||
sphinx-build -b html docs/ docs/_build | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: docs | ||
path: docs/_build/ | ||
test: | ||
name: Test | ||
with: | ||
os: ${{ matrix.os }} | ||
python-version: ${{ matrix.python-version }} | ||
coverage-upload: artifact | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
compile: [true, false] | ||
exclude: | ||
# macos-latest only work with arm64 | ||
- os: macos-latest | ||
python-version: "3.8" | ||
steps: | ||
Check failure on line 49 in .github/workflows/run-tests.yaml GitHub Actions / CIInvalid workflow file
|
||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
- name: install | ||
run: pip install -e .[test] | ||
- name: run pytest --cov | ||
run: | | ||
set -e | ||
pytest --cov=./ --cov-report=xml | ||
: .coverage confuses coveralls, remove it | ||
rm -f .coverage | ||
- name: upload coverage data to coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
parallel: true | ||
flag-name: python-${{ matrix.python-version }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: upload coverage data to codecov | ||
uses: codecov/[email protected] | ||
with: | ||
fail_ci_if_error: true | ||
coveralls-finish: | ||
needs: pytest | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: coverallsapp/[email protected] | ||
with: | ||
parallel-finished: true |