File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
1
name : Lint Code Base
2
2
3
3
on :
4
+ push :
5
+ branches-ignore : [master]
4
6
pull_request :
5
- branches-ignore :
6
- - ' master'
7
+ branches : [master]
7
8
8
9
jobs :
9
- build :
10
+ lint :
10
11
name : Lint Code Base
11
12
runs-on : ubuntu-latest
12
13
steps :
13
14
- name : Checkout Code
14
- uses : actions/checkout@v2
15
+ uses : actions/checkout@v3
16
+ with :
17
+ # Full git history is needed to get a proper list of changed files within `super-linter`
18
+ fetch-depth : 0
15
19
- name : Lint Code Base
16
- uses : docker:// github/super-linter:v2.1.1
20
+ uses : github/super-linter@v4
17
21
env :
18
22
VALIDATE_ALL_CODEBASE : false
23
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 24
24
brew install moreutils gawk
25
25
if : matrix.os == 'macos-latest'
26
26
- name : Get Sources
27
- uses : actions/checkout@v2
27
+ uses : actions/checkout@v3
28
28
- name : Test
29
29
run : |
30
30
export PATH="$PATH:/snap/bin"
You can’t perform that action at this time.
0 commit comments