Skip to content

Conforms package to new API schema #32

Conforms package to new API schema

Conforms package to new API schema #32

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/checkout@v3
- name: Setup Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- 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/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- 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