Skip to content

Merge pull request #1 from tatilimongi/Coverage #5

Merge pull request #1 from tatilimongi/Coverage

Merge pull request #1 from tatilimongi/Coverage #5

Workflow file for this run

name: Automatic Test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.12.5
uses: actions/setup-python@v4
with:
python-version: '3.12.5'
- name: Verify Python version
run: python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pytest --maxfail=1 --disable-warnings -q