Skip to content

Merge pull request #57 from AVATEAM-IT-SYSTEMHAUS/55-improve-dev-cycle #1

Merge pull request #57 from AVATEAM-IT-SYSTEMHAUS/55-improve-dev-cycle

Merge pull request #57 from AVATEAM-IT-SYSTEMHAUS/55-improve-dev-cycle #1

Workflow file for this run

name: Project lint
on:
workflow_dispatch:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- "*"
env:
FORCE_COLOR: "1"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade hatch
- name: Lint
run: hatch fmt --check