Bump linuxsuren/yaml-readme from 0.0.12 to 0.0.16 #189
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
# see more environment from https://github.com/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 |