-
Notifications
You must be signed in to change notification settings - Fork 4
39 lines (35 loc) · 915 Bytes
/
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
name: Linting
on: [push]
jobs:
check-linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-shellcheck@v1
with:
filter_mode: file
- uses: hadolint/[email protected]
with:
dockerfile: Dockerfile
recursive: true
- uses: chartboost/ruff-action@v1
check-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: |
python -m pip install pyyaml
python ./scripts/check_versions.py
typocheck:
name: Spellcheck with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4
- name: Check for typos
uses: crate-ci/typos@master
with:
config: ./.typos.toml