Skip to content

Commit 9b58b6e

Browse files
committed
fix: main CI steps dependent
1 parent a2c2a04 commit 9b58b6e

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

.github/workflows/ci.yaml

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,6 @@ concurrency:
77
group: ${{ github.workflow }}-${{ github.ref }}
88
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
99
jobs:
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
@@ -62,3 +48,21 @@ jobs:
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

0 commit comments

Comments
 (0)