ci: create lint.yml

This commit is contained in:
Digikwal 2025-06-24 22:37:11 +02:00 committed by GitHub
parent cde6bb3ce2
commit 4d175d549e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

35
.github/workflows/lint.yml vendored Normal file
View file

@ -0,0 +1,35 @@
name: Lint
on:
workflow_run:
workflows:
- Pre-commit
types:
- completed
workflow_dispatch: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10.6"
- name: Setup Go (for shfmt)
uses: actions/setup-go@v5
with:
go-version: "^1.14"
- name: Install pre-commit
run: pip install -U pre-commit
- name: Lint
run: pre-commit run --color=always --all-files
env:
GO111MODULE: on