Skip to content

Commit

Permalink
feat: An action to test operator at PR time (feast-dev#4635)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmartinol authored Oct 17, 2024
1 parent 9d7202d commit 14c1000
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/operator_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: operator-pr

on: [pull_request]
jobs:
operator-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.21.x
- name: Operator tests
run: |
cd infra/feast-operator/
make test
- name: After code formatting, check for uncommitted differences
run: git diff --exit-code infra/feast-operator

0 comments on commit 14c1000

Please sign in to comment.