feat: Allow to use env variable FEAST_FS_YAML_FILE_PATH and FEATURE_REPO_DIR #2492
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@v5 | |
| with: | |
| go-version: 1.22.9 | |
| - 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 |