Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

Check for existing Tanzu Builder and use if there #2072

Check for existing Tanzu Builder and use if there

Check for existing Tanzu Builder and use if there #2072

Workflow file for this run

name: Verify
on:
pull_request:
branches: [ main, release-* ]
jobs:
verify:
name: verify
runs-on: ubuntu-latest
steps:
- name: Free some disk space on runner
run: |
echo "free space before cleanup:"
df -h
sudo rm -rf /usr/share/dotnet /opt/ghc /usr/local/share/boost /usr/lib/jvm /usr/lib/firefox /opt/microsoft/powershell /opt/hostedtoolcache
echo "free space after cleanup:"
df -h
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: 1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: go cache
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: Run make verify
run: |
make verify