Skip to content

Commit b384d5b

Browse files
authored
superlinter (CosmosContracts#265)
this includes the tooling used by @joeabbey to tighten up our bash
1 parent 9558920 commit b384d5b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/superlinter.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Lint Code Base
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
jobs:
9+
run-lint:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v3
14+
with:
15+
# Full git history is needed to get a proper list of changed files within `super-linter`
16+
fetch-depth: 0
17+
18+
- name: Lint Code Base
19+
uses: github/super-linter@v4
20+
env:
21+
VALIDATE_ALL_CODEBASE: false
22+
DEFAULT_BRANCH: "main"
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)