Skip to content

bug fix: last pr had issue if venv wasn't being utilized #22

bug fix: last pr had issue if venv wasn't being utilized

bug fix: last pr had issue if venv wasn't being utilized #22

Workflow file for this run

name: Check if tests are passing on MR raise
on:
pull_request:
branches: [master]
workflow_dispatch:
jobs:
check-tests:
name: Check if tests are passing on MR raise
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r test_requirements.txt
- name: Run tests
run: python -m pytest
continue-on-error: false