Skip to content

Commit

Permalink
chore(ci): added a prow-jobs-checker builder CI to test the build.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed May 14, 2024
1 parent 1b9568e commit e8c9632
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/job-checker-builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Prow Jobs Checker Builder

on:
pull_request:
branches: [master]
paths: ['tools/prow-jobs-checker/**']

# Checks if any concurrent jobs under the same pull request or branch are being executed
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}-job-checker-builder
cancel-in-progress: true

jobs:
jobs-checker-builder:
runs-on: ubuntu-latest

steps:
- name: Checkout test-infra ⤵️
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: 'tools/prow-jobs-checker/go.mod'

- name: build prow jobs checker
working-directory: ./tools/prow-jobs-checker
run: |
go build

0 comments on commit e8c9632

Please sign in to comment.