Skip to content

Commit 2b1edab

Browse files
committed
github-ci: add operator build job
Signed-off-by: Ryan Koo <rbk65@cornell.edu>
1 parent c247830 commit 2b1edab

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build -- Operator
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'operator/**'
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
defaults:
12+
run:
13+
working-directory: operator
14+
steps:
15+
- uses: actions/checkout@v6
16+
17+
- name: Set up Go
18+
uses: actions/setup-go@v6
19+
with:
20+
go-version-file: operator/go.mod
21+
cache-dependency-path: operator/go.sum
22+
23+
- name: Build
24+
run: make build

0 commit comments

Comments
 (0)