Skip to content

chore: update version to 2.0.1 #38

chore: update version to 2.0.1

chore: update version to 2.0.1 #38

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 pytest
run: |
pip3 install pytest-cov
make test
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}