Skip to content

Update run-tests.yml #92

Update run-tests.yml

Update run-tests.yml #92

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
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: install dependencies
run: pip install .[dev]
shell: bash
- name: run tests
run: pytest
shell: bash