Skip to content

Support minting Azure access token from Vault sourced Azure credentials also from Vault sourced GCP service account keys #16

Support minting Azure access token from Vault sourced Azure credentials also from Vault sourced GCP service account keys

Support minting Azure access token from Vault sourced Azure credentials also from Vault sourced GCP service account keys #16

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: vet
run: make vet
- name: fmt
run: make fmt
- name: golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.0
- name: Build
run: go build -v ./...