Skip to content

Finish support for reprint fields #44

Finish support for reprint fields

Finish support for reprint fields #44

Workflow file for this run

name: Python
on: push
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install --requirement requirements.txt
- name: Check lint and test
run: make check
- name: Check publish
run: make publish