Skip to content

Run Unit & Integration tests #69

Run Unit & Integration tests

Run Unit & Integration tests #69

Workflow file for this run

---
name: Run Unit & Integration tests
on:
pull_request:
branches:
- develop
- master
workflow_dispatch:
inputs:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ^3.8.5
- name: Checkout
uses: actions/checkout@v4
- name: Install poetry
run: pip3 install poetry
- name: Run poetry lock
run: poetry lock --no-update
- name: Install dependencies
run: poetry export --dev -f requirements.txt | pip3 install -r /dev/stdin
- name: Run Lint & Tests
run: make pre-commit