Skip to content

ci(deps): bump actions/checkout from 4 to 5 #60

ci(deps): bump actions/checkout from 4 to 5

ci(deps): bump actions/checkout from 4 to 5 #60

Workflow file for this run

---
name: test
on:
pull_request:
push:
branches:
- gh-readonly-queue/**
- master
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.11"
- "3.10"
- "3.9"
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: pip
cache-dependency-path: setup.py
- run: pip install tox==3.26.0
- run: tox