Skip to content

chore(deps): bump actions/checkout from 4.3.1 to 6.0.2 (#2) #9

chore(deps): bump actions/checkout from 4.3.1 to 6.0.2 (#2)

chore(deps): bump actions/checkout from 4.3.1 to 6.0.2 (#2) #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[async]"
pip install pytest
- name: Run tests
run: pytest tests/ -v