Update Rust crate flate2 to v1.0.35 #78
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-kind | |
on: | |
- pull_request | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Install GoLang" | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18.x | |
- name: "Checkout Repo" | |
uses: actions/checkout@v2 | |
- name: "Create k8s Kind Cluster" | |
uses: helm/[email protected] | |
- name: "Setup caching" | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: "Build CLI" | |
run: make build-cli-linux | |
- name: "Make Packages" | |
run: make init-package package-example-game package-example-data-injection package-example-gitops-data package-example-compose | |
- name: "Run Tests" | |
# NOTE: We want to test providing a cluster to the test framework so this one creates its own KinD cluster | |
# rather than having the test suite do it. The K3d tests do a self-provisioned cluster and the K3s tests | |
# use Zarf to create the cluster. In this test a single cluster will be used throughout the test run. | |
run: TESTDISTRO=provided make test-e2e |