Skip to content

PG- 1624 accounts in authx claim #89

PG- 1624 accounts in authx claim

PG- 1624 accounts in authx claim #89

Workflow file for this run

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