Skip to content

Bump gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0 #46

Bump gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0

Bump gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0 #46

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ['v1.18.x', 'oldstable', 'stable']
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
check-latest: true
- uses: actions/checkout@v2
- run: |
pwd
echo ${HOME}
echo ${GITHUB_WORKSPACE}
echo ${GOPATH}
echo ${GOROOT}
mkdir -p $GOPATH/bin
echo 'export PATH=$PATH:$GOPATH/bin' > runme.sh
echo 'make tools all' >> runme.sh
chmod +x runme.sh
./runme.sh
env:
GOPATH: /home/runner/work/go