Fix refs #679
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: Func Integration Test | |
on: [pull_request] | |
jobs: | |
test: | |
name: Integration Test | |
strategy: | |
matrix: | |
go: [1.18.x] | |
os: ["ubuntu-latest"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install Binaries | |
run: ./hack/binaries.sh | |
- name: Allocate Cluster | |
run: ./hack/allocate.sh | |
- name: Local Registry | |
run: ./hack/registry.sh | |
- name: Integration Test | |
run: make test-integration | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.txt | |
flags: integration-tests |