Authorize Editor #1985
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
# This GitHub action runs your tests for each commit push and/or PR. Optionally | |
# you can turn it on using a cron schedule for regular testing. | |
# | |
name: Code Check | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
- '.vscode' | |
- '.gitignore' | |
- 'CHANGELOG.md' | |
- 'CONTRIBUTING.md' | |
- 'LICENSE' | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- 'README.md' | |
- '.vscode' | |
- '.gitignore' | |
- 'CHANGELOG.md' | |
- 'CONTRIBUTING.md' | |
- 'LICENSE' | |
# For systems with an upstream API that could drift unexpectedly (like most SaaS systems, etc.), | |
# we recommend testing at a regular interval not necessarily tied to code changes. This will | |
# ensure you are alerted to something breaking due to an API change, even if the code did not | |
# change. | |
# schedule: | |
# - cron: '0 13 * * *' | |
jobs: | |
# ensure the code builds... | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4.1.1 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
cache: false | |
id: go | |
- uses: actions/cache@v4 | |
continue-on-error: true | |
timeout-minutes: 2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }} | |
- name: Build | |
run: | | |
make build | |
lint: | |
needs: [build] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
module: | |
- '.' | |
- 'authorize' | |
- 'credentials' | |
- 'management' | |
- 'mfa' | |
- 'risk' | |
- 'verify' | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.20.0' # The Go version to download (if necessary) and use. | |
cache: true | |
- id: golangci-lint-version | |
working-directory: tools | |
run: >- | |
echo "version=$( | |
go list -m all | | |
grep github.com/golangci/golangci-lint | | |
awk '{print $2}' | |
)" >> $GITHUB_OUTPUT | |
- name: lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: "${{ steps.golangci-lint-version.outputs.version }}" | |
working-directory: ${{ matrix.module }} |