Add development guide describing release process #317
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |