Skip to content

Bump actions/setup-go from 3.2.1 to 3.5.0 #188

Bump actions/setup-go from 3.2.1 to 3.5.0

Bump actions/setup-go from 3.2.1 to 3.5.0 #188

Workflow file for this run

# see more environment from https:/actions/virtual-environments
name: e2e Test
on:
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-10.15]
jenkins_version: [2.190.1, 2.190.2, 2.190.3, 2.204.1]
steps:
- name: Set up Go 1.16
uses: actions/[email protected]
with:
go-version: 1.16
id: go
- name: Check out code into the Go module directory
uses: actions/[email protected]
- name: Build
env:
JENKINS_VERSION: ${{ matrix.jenkins_version }}
run: |
if [[ "$(uname -s)" == "Darwin" ]]; then
export PATH=$PATH:$GOPATH/bin:/home/runner/go/bin:${PWD}/bin:${PWD}/bin/darwin:/System/Volumes/Data/Users/runner/go/bin
make go-bindata-download-darwin tools init darwin
make test-slow
elif [[ "$(uname -s)" == "Linux" ]]; then
export PATH=$PATH:$GOPATH/bin:/home/runner/go/bin:${PWD}/bin:${PWD}/bin/linux:/System/Volumes/Data/Users/runner/go/bin
make go-bindata-download-linux tools init linux
make test-slow
fi