Skip to content

Merge pull request #17 from au-imclab/dev #12

Merge pull request #17 from au-imclab/dev

Merge pull request #17 from au-imclab/dev #12

name: Test, Build, Release, Publish (Pypi)
on:
push:
tags:
- "v*" # When a tag like vx.x.x is pushed
jobs:
build:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: |
3.9
3.10
3.11
3.12
- name: Set up pip cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
restore-keys: ${{ runner.os }}-pip-
- name: Set up hatch cache
uses: actions/cache@v3
with:
path: ~/.hatchcache
key: ${{ runner.os }}-hatchcache-${{ hashFiles('pyproject.toml') }}
restore-keys: ${{ runner.os }}-hatchcache-
- name: Set up hatch cache (data)
uses: actions/cache@v3
with:
path: ~/.hatchdata
key: ${{ runner.os }}-hatchdata-${{ hashFiles('pyproject.toml') }}
restore-keys: ${{ runner.os }}-hatchdata-
- name: Install Hatch
run: pipx install hatch
- name: Run tests
run: hatch --cache-dir ~/.hatchcache --data-dir ~/.hatchdata run test
- name: Lint and Type check
run: hatch --cache-dir ~/.hatchcache --data-dir ~/.hatchdata -e lint run all
- name: Build dist
run: hatch --cache-dir ~/.hatchcache --data-dir ~/.hatchdata build
- name: Publish on PyPI
uses: pypa/gh-action-pypi-publish@release/v1
continue-on-error: true
- uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"