Skip to content

Bumped version to 0.0.5 #131

Bumped version to 0.0.5

Bumped version to 0.0.5 #131

Workflow file for this run

name: Run Tests
on: [ push, pull_request, workflow_dispatch ]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: update packages
run: sudo apt-get update -y
- name: install make
run: sudo apt-get install -y build-essential
- name: setup python 3
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: install dependencies
run: make getdeps && pip3 install -r requirements-dev.txt
- name: run tests
run: make test