Skip to content

docs: update readme for getting started #8

docs: update readme for getting started

docs: update readme for getting started #8

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- "*"
push:
branches: [main]
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
# Semantic version range syntax or exact version of a Python version
python-version: '3.x'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python -m unittest