Skip to content

Commit a77d76e

Browse files
testVector in CI
1 parent 97664d7 commit a77d76e

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/ci_test_go.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,25 @@ jobs:
2727
testGo:
2828
strategy:
2929
matrix:
30-
library: [DynamoDbEncryption]
30+
library: [DynamoDbEncryption, TestVectors]
3131
os: [ubuntu-22.04]
3232
go-version: ["1.23"]
3333
runs-on: ${{ matrix.os }}
3434
permissions:
3535
id-token: write
3636
contents: read
3737
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+
3849
- name: Support longpaths
3950
run: |
4051
git config --global core.longpaths true

0 commit comments

Comments
 (0)