Skip to content

move github actions to hatch #119

move github actions to hatch

move github actions to hatch #119

Workflow file for this run

name: Check
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.ref, 'refs/tags') }}
strategy:
fail-fast: false
matrix:
hatch-environment:
- docs:build
- test:linter
- test:pkglint
- docs:spelling
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: python -m pip install hatch
- name: Run
run: hatc run ${{ matrix.tox-environment }}