Skip to content

Add support for MFA Authentication Endpoints: Add, List, and Delete Authenticators #1208

Add support for MFA Authentication Endpoints: Add, List, and Delete Authenticators

Add support for MFA Authentication Endpoints: Add, List, and Delete Authenticators #1208

Workflow file for this run

name: Main Workflow
on:
push:
branches: [main]
pull_request:
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Check that files were correctly generated
run: make check-getters
- name: Check that the packages can be built
run: go build ./...
- name: Check for linting errors
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # [email protected]
with:
version: latest
args: -v -c .golangci.yml
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Run tests
run: make test
- name: Update codecov report
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # [email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.out
fail_ci_if_error: false
verbose: true