Skip to content

Merge tag 'v1.0.0' into develop #3

Merge tag 'v1.0.0' into develop

Merge tag 'v1.0.0' into develop #3

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- develop
pull_request:
jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
python -m unittest \
thothlibrary.tests.test_rest \
thothlibrary.thoth-1_0_0.tests.tests