Skip to content

Bump actions/checkout from 6.0.1 to 6.0.2 #92

Bump actions/checkout from 6.0.1 to 6.0.2

Bump actions/checkout from 6.0.1 to 6.0.2 #92

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- 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