Skip to content

chore(deps): Bump github/codeql-action from 4.30.8 to 4.31.9 #244

chore(deps): Bump github/codeql-action from 4.30.8 to 4.31.9

chore(deps): Bump github/codeql-action from 4.30.8 to 4.31.9 #244

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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.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