Skip to content

add more info to readme #43

add more info to readme

add more info to readme #43

Workflow file for this run

name: Test, lint, and build library
on: [push, pull_request]
jobs:
test-library:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Python 3.13
uses: actions/[email protected]
with:
python-version: "3.13"
- name: Install Poetry
run: pipx install poetry --python $(which python)
- name: Install project
run: poetry install
- name: Test with tox
run: poetry run tox
test-deps:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
python-version: "3.13"
- name: Install Poetry
run: pipx install poetry --python $(which python)
- name: Check pyproject.toml
run: poetry check
- name: Check if lockfile is updated
run: poetry lock --check