Skip to content

Update module github.com/Azure/azure-sdk-for-go/sdk/azcore to v1.9.1 #281

Update module github.com/Azure/azure-sdk-for-go/sdk/azcore to v1.9.1

Update module github.com/Azure/azure-sdk-for-go/sdk/azcore to v1.9.1 #281

Workflow file for this run

# Build Go
name: Go package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: '1.18.2'
- name: Start Lowkey Vault
run: |
docker-compose up -d
sleep 5
docker ps
if [ $(docker ps | grep nagyesta | wc -l) -ne 2 ]; then echo "ERROR: Some containers are not running"; exit 1; fi
- name: Test with go
env:
IDENTITY_ENDPOINT: http://localhost:8080/metadata/identity/oauth2/token
IDENTITY_HEADER: header
run: |
go test ./src -v
- name: Stop container
if: always()
run: |
docker-compose down