Skip to content

build(ci): run tests in github actions #1

build(ci): run tests in github actions

build(ci): run tests in github actions #1

Workflow file for this run

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
- name: Run tests
run: |
python -m pytest