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 97664d7 commit a77d76eCopy full SHA for a77d76e
.github/workflows/ci_test_go.yml
@@ -27,14 +27,25 @@ jobs:
27
testGo:
28
strategy:
29
matrix:
30
- library: [DynamoDbEncryption]
+ library: [DynamoDbEncryption, TestVectors]
31
os: [ubuntu-22.04]
32
go-version: ["1.23"]
33
runs-on: ${{ matrix.os }}
34
permissions:
35
id-token: write
36
contents: read
37
steps:
38
+ - name: Setup Docker
39
+ if: matrix.os == 'macos-13' && matrix.library == 'TestVectors'
40
+ uses: douglascamata/setup-docker-macos-action@v1-alpha
41
+
42
+ - name: Setup DynamoDB Local
43
+ if: matrix.library == 'TestVectors'
44
+ uses: rrainn/[email protected]
45
+ with:
46
+ port: 8000
47
+ cors: "*"
48
49
- name: Support longpaths
50
run: |
51
git config --global core.longpaths true
0 commit comments