Skip to content

Bump actions/checkout from 5 to 6 #19

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #19

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.11, 3.12, 3.13, 3.14]
include:
- python-version: 3.11
env: TOXENV=qa
env:
TOX_PARALLEL_NO_SPINNER: 1
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox coveralls setuptools
- name: Run tests
run: tox -vv
env:
TOXENV: ${{ matrix.env.TOXENV || format('py{0}', matrix.python-version) }}
- name: Upload coverage to Coveralls (only for 3.11)
if: matrix.python-version == '3.11' && success()
run: coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}