Skip to content

bump version in toml #3

bump version in toml

bump version in toml #3

Workflow file for this run

name: Unit tests
on: [pull_request]
jobs:
unittest:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- run:
sudo apt-get update && sudo apt-get install -y python3-pip && sudo
pip3 install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install Python dependencies
run: poetry install --no-root
- name: Test with unittest
run: |
poetry run python -m unittest discover -s tests/ -p '*.py'