Skip to content

chore: Use actions/setup-python@v5 in github workflows #296

chore: Use actions/setup-python@v5 in github workflows

chore: Use actions/setup-python@v5 in github workflows #296

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dev dependencies
run: pip install .[dev]
- name: Run tests
run: pytest -ra -q --cov=bottle --cov-report=term