Skip to content

Update bug_report.yml #157

Update bug_report.yml

Update bug_report.yml #157

Workflow file for this run

name: Pytest
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
test:
name: Run Pytest
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest
- name: Run Pytest
run: pytest tests/