github user-name changed #1
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: local up KPNG | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
setup: | |
name: setup | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.work | |
id: go | |
- name: Install dependencies | |
run: | | |
go version | |
go install golang.org/x/lint/golint@master | |
local-up-kpng: | |
name: local-up-kpng | |
needs: setup | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 #Guys is 30 minutes ok, or too much? Currently on Github runners it takes 5m 30s | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: KPNG local up | |
run: ./hack/kpng-local-up.sh |