Skip to content

Merge pull request #132 from IDEMSInternational/update-ptext-models #118

Merge pull request #132 from IDEMSInternational/update-ptext-models

Merge pull request #132 from IDEMSInternational/update-ptext-models #118

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: pip
- name: Build
run: |
pip install --upgrade pip
pip install --upgrade build
python -m build
pip install dist/*.whl
- name: Test
run: |
python -m unittest discover -s tests