Skip to content

Commit

Permalink
ci: match job name to branch protection rule
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Vazquez <[email protected]>
  • Loading branch information
austinvazquez committed Jun 19, 2024
1 parent c8ebf20 commit c390fc3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,21 @@ jobs:
git secrets --scan-history
gen-code-no-diff:
runs-on: ubuntu-latest
strategy:
matrix:
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- run: echo "Skipping CI for docs & contrib files"
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- run: echo "Skipping CI for docs & contrib files"
go-linter:
name: lint
runs-on: ubuntu-latest
steps:
- run: echo "Skipping CI for docs & contrib files"
Expand Down

0 comments on commit c390fc3

Please sign in to comment.