Skip to content

Bump version

Bump version #109

Workflow file for this run

name: Unit tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Run lint
run: |
uv run --python ${{ matrix.python-version }} pylint src/ncoreparser
- name: Check code format
run: |
uv run --python ${{ matrix.python-version }} black --check .
- name: Perform tests
run: |
uv run --python ${{ matrix.python-version }} pytest