Skip to content

Bump actions/checkout from 6.0.0 to 6.0.1 (#109) #59

Bump actions/checkout from 6.0.0 to 6.0.1 (#109)

Bump actions/checkout from 6.0.0 to 6.0.1 (#109) #59

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.9", os: ubuntu-22.04 }
- { python: "3.10", os: windows-2022 }
- { python: "3.11", os: macos-latest }
- { python: "3.12", os: windows-latest }
- { python: "3.13", os: ubuntu-latest }
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- 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