Skip to content

chore(deps): Bump github/codeql-action from 3.28.17 to 3.29.1 (#92) #202

chore(deps): Bump github/codeql-action from 3.28.17 to 3.29.1 (#92)

chore(deps): Bump github/codeql-action from 3.28.17 to 3.29.1 (#92) #202

Workflow file for this run

name: Test
on:
pull_request: {}
push:
branches: [main]
workflow_dispatch:
inputs: {}
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest