Skip to content

doc: tech stack readability improvement #39

doc: tech stack readability improvement

doc: tech stack readability improvement #39

Workflow file for this run

name: Tests
on:
push:
branches:
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Cache pip install
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip'
- name: Install Dependencies
run: pip install -r requirements-dev.txt
- name: Run test
run: python -m pytest