Skip to content

Bump version to 0.2.1 and enhance functionality with new validation c… #12

Bump version to 0.2.1 and enhance functionality with new validation c…

Bump version to 0.2.1 and enhance functionality with new validation c… #12

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install pytest build
- name: Run tests
run: python -m pytest
- name: Compile sources
run: python -m compileall bladerecon tests
- name: Build package
run: python -m build