Add file integrity checks to CI workflow #306
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: e2e-test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Kind cluster | |
id: setup-kind | |
uses: ./.github/actions/kind-create | |
- name: run tests | |
env: | |
KUBECONFIG: ${{ steps.setup-kind.outputs.kubeconfig }} | |
run: | | |
go work init | |
go work use -r . | |
make test-e2e |