Skip to content

Use strict inequality for more clarity (#69) #192

Use strict inequality for more clarity (#69)

Use strict inequality for more clarity (#69) #192

Workflow file for this run

# This workflow will install the Python package and run the tests
name: Test mlpp-lib
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup poetry
uses: abatilo/actions-poetry@v2
- name: Install the project dependencies
run: poetry install
- name: Run the tests
run: poetry run pytest tests/