We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d7202d commit 14c1000Copy full SHA for 14c1000
.github/workflows/operator_pr.yml
@@ -0,0 +1,18 @@
1
+name: operator-pr
2
+
3
+on: [pull_request]
4
+jobs:
5
+ operator-test:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v4
9
+ - name: Install Go
10
+ uses: actions/setup-go@v2
11
+ with:
12
+ go-version: 1.21.x
13
+ - name: Operator tests
14
+ run: |
15
+ cd infra/feast-operator/
16
+ make test
17
+ - name: After code formatting, check for uncommitted differences
18
+ run: git diff --exit-code infra/feast-operator
0 commit comments