File tree Expand file tree Collapse file tree 1 file changed +18
-14
lines changed
Expand file tree Collapse file tree 1 file changed +18
-14
lines changed Original file line number Diff line number Diff line change @@ -7,20 +7,6 @@ concurrency:
77 group : ${{ github.workflow }}-${{ github.ref }}
88 cancel-in-progress : ${{ github.ref != 'refs/heads/main' }}
99jobs :
10- validate-readme-files :
11- name : Validate README files
12- runs-on : ubuntu-latest
13- steps :
14- - name : Check out code
15- uses : actions/checkout@v4
16- - name : Set up Go
17- uses : actions/setup-go@v5
18- with :
19- go-version : " 1.23.2"
20- - name : Validate contributors
21- run : go build ./scripts/contributors && ./contributors
22- - name : Remove build file artifact
23- run : rm ./contributors
2410 test-terraform :
2511 name : Validate Terraform output
2612 runs-on : ubuntu-latest
6248 config : .github/typos.toml
6349 - name : Lint
6450 run : bun lint
51+ validate-readme-files :
52+ name : Validate README files
53+ runs-on : ubuntu-latest
54+
55+ # We want to do some basic README checks first before we try analyzing the
56+ # contents
57+ needs : validate-style
58+ steps :
59+ - name : Check out code
60+ uses : actions/checkout@v4
61+ - name : Set up Go
62+ uses : actions/setup-go@v5
63+ with :
64+ go-version : " 1.23.2"
65+ - name : Validate contributors
66+ run : go build ./scripts/contributors && ./contributors
67+ - name : Remove build file artifact
68+ run : rm ./contributors
You can’t perform that action at this time.
0 commit comments