-
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (43 loc) · 1.12 KB
/
lint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
name: Lint Code Base
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, labeled]
paths:
- "**/*.py"
- "**/*.yaml"
- "**/*.yml"
- "Dockerfile"
- "README.md"
- ".github/workflows/*"
jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0
- name: Lint Python Code Base with Ruff
uses: chartboost/ruff-action@v1
with:
src: "./app"
- name: Lint Code Base
uses: super-linter/super-linter/slim@v5
env:
LINTER_RULES_PATH: .
VALIDATE_ALL_CODEBASE: false
VALIDATE_DOCKERFILE_HADOLINT: true
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_YAML: true
VALIDATE_MARKDOWN: true
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}