-
Notifications
You must be signed in to change notification settings - Fork 44
28 lines (28 loc) · 740 Bytes
/
main.yml
File metadata and controls
28 lines (28 loc) · 740 Bytes
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
# Run a bunch of lint checks to keep me honest
name: Linting
on:
push:
paths:
- '**.fish'
- '**.py'
- '**.sh'
pull_request:
paths:
- '**.fish'
- '**.py'
- '**.sh'
jobs:
fish:
uses: nathanchance/actions-workflows/.github/workflows/fish_format.yml@main
python:
strategy:
fail-fast: false
matrix:
version: ['3.14', '3.13', '3.12', '3.11', '3.10']
uses: nathanchance/actions-workflows/.github/workflows/python_lint.yml@main
with:
python_version: ${{ matrix.version }}
shellcheck:
uses: ClangBuiltLinux/actions-workflows/.github/workflows/shellcheck.yml@main
shfmt:
uses: ClangBuiltLinux/actions-workflows/.github/workflows/shfmt.yml@main