Skip to content

build(deps): bump actions/checkout from 4 to 5 #267

build(deps): bump actions/checkout from 4 to 5

build(deps): bump actions/checkout from 4 to 5 #267

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
- docs:check
- test:lint
- test:pkglint
steps:
- uses: actions/checkout@v5
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: hatch run ${{ matrix.hatch-environment }}