Skip to content

Bump actions/setup-python from 6.0.0 to 6.1.0 #35

Bump actions/setup-python from 6.0.0 to 6.1.0

Bump actions/setup-python from 6.0.0 to 6.1.0 #35

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- python: "3.13"
os: ubuntu-latest
- python: "3.13"
os: macos-latest
- python: "3.13"
os: windows-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python }}
cache: pip
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run tests
run: |
pytest -v