Skip to content

Add development guide describing release process #316

Add development guide describing release process

Add development guide describing release process #316

Workflow file for this run

# Build actions for every push
name: onpush
on:
push:
workflow_dispatch:
jobs:
check:
strategy:
matrix:
python-ver: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-22.04, macos-latest]
runs-on: ${{matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-ver }}
- name: Install Hatch
run: pip install --upgrade hatch
- name: Lint
run: hatch run lint:check
- name: Test
run: hatch run +py=${{ matrix.python-ver }} test:all