Skip to content

Update module github.com/Azure/azure-sdk-for-go/sdk/azcore to v1.9.0 … #266

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

Update module github.com/Azure/azure-sdk-for-go/sdk/azcore to v1.9.0 … #266

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@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.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