fix: Prod 3036/fix ansible docker image #275
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: E2E | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
create-cluster: | |
name: Create Kind cluster | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install GO | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
cache: false | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- run: kind get clusters | |
- run: go test -v -race ./pkg/cache/... -tags="e2e" | |
- run: go test -v -race ./pkg/applier/filters/... -tags="e2e" |