Skip to content

Commit 63469e7

Browse files
ci: match job name to branch protection rule (runfinch#988)
Issue #, if available: runfinch#986 is currently blocked on merge due to required CI job checks not matching the expected naming in the branch protection ruleset. The `go-linter` job was renamed in runfinch#649 to `lint` and `unit-test` and `gen-code-no-diff` were expanded for the Windows platform. *Description of changes:* This change updates the docs CI job to match the expected job names in the branch protection ruleset. *Testing done:* Manually verified the branch protection ruleset name matches. - [x] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Austin Vazquez <[email protected]>
1 parent 9c1caf0 commit 63469e7

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ci-docs.yaml

+9-2
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,21 @@ jobs:
4545
git secrets --scan-history
4646
4747
gen-code-no-diff:
48-
runs-on: ubuntu-latest
48+
strategy:
49+
matrix:
50+
os: [macos-latest, windows-latest]
51+
runs-on: ${{ matrix.os }}
4952
steps:
5053
- run: echo "Skipping CI for docs & contrib files"
5154
unit-tests:
52-
runs-on: ubuntu-latest
55+
strategy:
56+
matrix:
57+
os: [macos-latest, windows-latest]
58+
runs-on: ${{ matrix.os }}
5359
steps:
5460
- run: echo "Skipping CI for docs & contrib files"
5561
go-linter:
62+
name: lint
5663
runs-on: ubuntu-latest
5764
steps:
5865
- run: echo "Skipping CI for docs & contrib files"

0 commit comments

Comments
 (0)