Skip to content

task and dag to export helpscout docs #232

task and dag to export helpscout docs

task and dag to export helpscout docs #232

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
env:
PYTHONPATH: ${{ github.workspace }}
run: |
source venv/bin/activate
pytest --maxfail=1 --disable-warnings -q