Skip to content

Commit

Permalink
ci: add link-check action
Browse files Browse the repository at this point in the history
  • Loading branch information
urish committed Sep 21, 2023
1 parent 5725713 commit 7d48aab
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/lint-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Python Lint

on:
push:
pull_request:
workflow_dispatch:

jobs:
type-check:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v2

- name: Install pre-commit
run: pip install pre-commit

- name: Check code with pre-commit
run: pre-commit run --all-files

0 comments on commit 7d48aab

Please sign in to comment.