Skip to content

Merge branch 'main' of github.com:mariolpantunes/knee #271

Merge branch 'main' of github.com:mariolpantunes/knee

Merge branch 'main' of github.com:mariolpantunes/knee #271

Workflow file for this run

name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Python 3
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install package
run: |
python -m pip install --upgrade pip
pip install .
- name: Run tests with unittest
run: python -m unittest