Skip to content

fix run_test.yml file for test #3

fix run_test.yml file for test

fix run_test.yml file for test #3

Workflow file for this run

name: Run pytest
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.11.2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run pytest
run: |
pytest