Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Improve test-full-wf #48

Improve test-full-wf

Improve test-full-wf #48

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
tests:
name: "Tests"
timeout-minutes: 10
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: pytest -vvv tests