PG- 1624 accounts in authx claim #89
Workflow file for this run
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: Check changes in the Main branch | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
GOPRIVATE: "github.com/napptive/*" | |
GH_NAPP_USER: ${{ secrets.GH_NAPP_USER }} | |
GH_NAPP_TOKEN: ${{ secrets.GH_NAPP_TOKEN }} | |
jobs: | |
build: | |
name: Build All | |
runs-on: ubuntu-latest | |
steps: | |
- 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@v3 | |
- name: Make all | |
run: make all | |
golangci: | |
name: GoLangCI | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- 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@v3 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.48 | |
args: --timeout=3m | |
skip-pkg-cache: true |