Skip to content

Update test_main.py #22

Update test_main.py

Update test_main.py #22

Workflow file for this run

# This workflow will install Python dependencies, run tests with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
run-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: pip install pytest
- name: Test with pytest
run: pytest