Bump actions/setup-python from 5.0.0 to 5.3.0 #1780
Workflow file for this run
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-ignore: | |
# These should always correspond to pull requests, so ignore them for | |
# the push trigger and let them be triggered by the pull_request | |
# trigger, avoiding running the workflow twice. This is a minor | |
# optimization so there's no need to ensure this is comprehensive. | |
- 'dependabot/**' | |
# The branches below must be a subset of the branches above | |
pull_request: | |
branches: | |
- develop | |
- main | |
schedule: | |
- cron: '0 11 * * *' | |
# | | | | | | |
# | | | | |____ day of the week (0 - 6 or SUN-SAT) | |
# | | | |____ month (1 - 12 or JAN-DEC) | |
# | | |____ day of the month (1 - 31) | |
# | |____ hour (0 - 23) | |
# |____ minute (0 - 59) | |
env: | |
PYTHONUNBUFFERED: '1' | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
name: Python ${{ matrix.python }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
# The maximum number of minutes to let a workflow run | |
# before GitHub automatically cancels it. Default: 360 | |
timeout-minutes: 30 | |
strategy: | |
# When set to true, GitHub cancels | |
# all in-progress jobs if any matrix job fails. | |
fail-fast: false | |
matrix: | |
python: | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
- '3.13' | |
- 'pypy-3.10' | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 5 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox tox-gh-actions setuptools | |
- name: Setuptools self-test | |
run: | | |
python setup.py --fullname | |
python setup.py --long-description | |
python setup.py --classifiers | |
- name: Run unit tests with coverage | |
run: tox | |
- name: Combine coverage reports | |
run: tox -e coverage-report | |
- name: Upload coverage report | |
if: success() | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_SERVICE_NAME: github | |
run: | | |
python -m pip install coveralls | |
# Do not fail job if coveralls.io is down | |
coveralls || true | |
- name: Success Reporting | |
if: success() | |
run: git log --format=fuller -5 |