Skip to content

Handle ready event

Handle ready event #5

Workflow file for this run

name: Unit Testing
on:
pull_request:
branches:
- main
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_test.txt -r requirements.txt
pip install -e .
- name: Run unit tests
run: python -m pytest --import-mode=append tests/