Skip to content

chore: release gha

chore: release gha #18

Workflow file for this run

# github action for running tests in test directory
# use unittest
name: Run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
pip3 install -r requirements.txt
- name: Test with unittest
run: |
make test