Skip to content

Refactor README and documentation a bit more. #51

Refactor README and documentation a bit more.

Refactor README and documentation a bit more. #51

Workflow file for this run

name: Feature workflow
on:
push:
branches:
- 'feature/*'
jobs:
pre-commit:
name: Run pre-commit
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Run pre-commit
uses: pre-commit/action@v3.0.1
unittests:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7.16, 3.8.18, 3.9.18, "3.10.13", 3.11.5, 3.12.0]
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run unittests
uses: ./.github/actions/unittests
with:
python-version: ${{ matrix.python-version }}