Skip to content

chore: bump github.com/Azure/azure-sdk-for-go/sdk/azidentity (#199) #226

chore: bump github.com/Azure/azure-sdk-for-go/sdk/azidentity (#199)

chore: bump github.com/Azure/azure-sdk-for-go/sdk/azidentity (#199) #226

Workflow file for this run

name: Go Matrix
on:
push:
branches:
- master
pull_request:
jobs:
cross:
name: Go
runs-on: ${{ matrix.os }}
env:
CGO_ENABLED: 0
strategy:
matrix:
go-version: [ stable ]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout code
uses: actions/checkout@v4
# https://github.com/marketplace/actions/setup-go-environment
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -v -cover ./...
- name: Build
run: go build -v -ldflags "-s -w" -trimpath