We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787d2c4 commit 2ae7b98Copy full SHA for 2ae7b98
.github/workflows/test.yml
@@ -81,3 +81,14 @@ jobs:
81
run: go test -gcflags=all=-d=checkptr -count 10 -v ./...
82
env:
83
GO_OPENSSL_VERSION_OVERRIDE: ${{ matrix.openssl-version }}
84
+ azurelinux:
85
+ runs-on: ubuntu-latest
86
+ container: mcr.microsoft.com/oss/go/microsoft/golang:1.23-azurelinux3.0
87
+ steps:
88
+ - name: Checkout code
89
+ uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
90
+ - name: Run Test
91
+ run: go test -v ./...
92
+ # Go with FIPs / OpenSSL support on Azure Linux 3.0 is currently broken due to symcrypt change, so we ignore failures.
93
+ # See https://github.com/golang-fips/openssl/issues/158.
94
+ continue-on-error: true
0 commit comments