Skip to content

build(deps): bump crazy-max/ghaction-github-labeler from 5.3.0 to 6.0.0 #18

build(deps): bump crazy-max/ghaction-github-labeler from 5.3.0 to 6.0.0

build(deps): bump crazy-max/ghaction-github-labeler from 5.3.0 to 6.0.0 #18

Workflow file for this run

name: Tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
dump-context:
runs-on: ubuntu-latest
steps:
- name: Dump context "GitHub"
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
tests:
strategy:
matrix:
os: [ windows-latest ]
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out the repository
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch pre-commit
hatch env create
- name: Lint and typecheck
run: |
hatch run lint:all
- name: Run Tests
run: |
hatch test