FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feast/.github/workflows/operator_pr.yml at master · feast-dev/feast · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
feast-dev
/
feast
Public
Notifications
You must be signed in to change notification settings
Fork
1.4k
Star
7.2k
Code
Issues
217
Pull requests
190
Discussions
Actions
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
feast
/
.github
/
workflows
/
operator_pr.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
34 lines (31 loc) · 1.21 KB
Breadcrumbs
feast
/
.github
/
workflows
/
operator_pr.yml
Copy path
File metadata and controls
34 lines (31 loc) · 1.21 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name
:
operator-pr
on
:
[pull_request]
concurrency
:
group
:
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress
:
true
jobs
:
operator-test
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v4
-
name
:
Install Go
uses
:
actions/setup-go@v5
with
:
go-version
:
1.25.0
-
name
:
Operator tests
run
:
make -C infra/feast-operator test
-
name
:
After code formatting, check for uncommitted differences
run
:
git diff --exit-code infra/feast-operator
-
name
:
Regenerate bundle and verify CSV is in sync
run
:
make -C infra/feast-operator bundle
-
name
:
Check for uncommitted bundle differences
run
:
|
# createdAt and operator-sdk builder version change every run;
# ignore them so only real RBAC / structural drift fails the check.
if ! git diff --exit-code \
-I 'createdAt:' \
-I 'operator-sdk-v' \
infra/feast-operator/bundle/ infra/feast-operator/bundle.Dockerfile; then
echo "::error::Bundle manifests are out of sync. Run 'make bundle' in infra/feast-operator/ and commit the result."
exit 1
fi
Back
|
FazBrowse Home
|
New Git URL