Skip to content

docs: Update issue templates #18

docs: Update issue templates

docs: Update issue templates #18

Workflow file for this run

# This workflow will install Python dependencies, run tests with some python versions.
# More information: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test with PyTest
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Create and activate virtualenv
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
- name: Install dependencies
run: |
source venv/bin/activate
pip install -e .[dev]
- name: Test with pytest
run: |
source venv/bin/activate
pytest