Skip to content

Update pytester.yml

Update pytester.yml #2

Workflow file for this run

name: pytest Workflow
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pytest_job:
name: Run pytest
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Run pytest
run: |
pytest