Skip to content

Bump actions/setup-python from 2 to 5 #1700

Bump actions/setup-python from 2 to 5

Bump actions/setup-python from 2 to 5 #1700

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.10'
- uses: pre-commit/action@v2.0.0
test-package:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
pip install -e .[dev]
pip freeze
- name: Run tests
run: pytest -vs --cov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
flags: py-${{ matrix.python-version }}