Update Rust crate flate2 to v1.0.35 #74
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-k3s | |
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: "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: "PATH=$PATH" preserves the default user $PATH. This is needed to maintain the version of go installed | |
# in a previous step. This test run will use Zarf to create a K3s cluster, and a brand new cluster will be | |
# used for each test | |
run: sudo env "PATH=$PATH" TESTDISTRO=k3s make test-e2e |