Skip to content

Update run-tests.yml #103

Update run-tests.yml

Update run-tests.yml #103

Workflow file for this run

name: run-tests
on:
pull_request:
push:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: PR test
if: github.event.pull_request
uses: actions/setup-python@v5
with:
python-version: |
3.8
3.9
3.10
3.11
- name: test python 3.7 and 3.12
uses: actions/setup-python@v5
with:
python-version: |
3.7
3.12
- name: run tests
run: |
pip install .[dev]
pytest
shell: bash