Skip to content

updated tests workflow yml #1

updated tests workflow yml

updated tests workflow yml #1

Workflow file for this run

name: tests
on:
push:
branches:
- master
permissions:
contents: read
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run pytest
run: |
pytest -v tests/