update Go from 1.21.1
to 1.21.3
and go mod dep (#402)
#14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Edge tests | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
aws-edge-test: | |
name: Test AWS edge | |
runs-on: [self-hosted] | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.3 | |
check-latest: true | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Test | |
env: | |
GO111MODULE: on | |
GOPROXY: "https://proxy.golang.org,direct" | |
run: | | |
go test ./edge -v -aws.config=/etc/kes/config-aws.yml -run="TestAWS" | |
azure-edge-test: | |
name: Test Azure edge | |
runs-on: [self-hosted] | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.3 | |
check-latest: true | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Test | |
env: | |
GO111MODULE: on | |
GOPROXY: "https://proxy.golang.org,direct" | |
run: | | |
go test ./edge -v -azure.config=/etc/kes/config-azure.yml -run="TestAzure" |