add cluster field for PVCs #2703
Workflow file for this run
This file contains 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-e2e-tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
tests: | |
name: End-2-End tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "^1.22.5" | |
- name: Make dependencies | |
run: make deps mocks | |
- name: Code generation | |
run: make codegen | |
- name: Run unit tests | |
run: make test | |
- name: Run end-2-end tests | |
run: make e2e |