File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 22
22
matrix :
23
23
# Break up verification between namespaces over multiple
24
24
# actions to take advantage of parallelization
25
- library : [DynamoDbEncryption, TestVectors]
25
+ library :
26
+ [
27
+ DynamoDbEncryption,
28
+ DynamoDbEncryptionTransforms,
29
+ DynamoDbItemEncryptor,
30
+ StructuredEncryption,
31
+ TestVectors,
32
+ ]
26
33
os : [macos-12]
27
34
runs-on : ${{ matrix.os }}
28
35
defaults :
57
64
diff-generated-code : false
58
65
59
66
- name : Verify ${{ matrix.library }} Dafny code
67
+ if : ${{ matrix.library != 'TestVectors' }}
68
+ working-directory : DynamoDbEncryption/dafny/${{ matrix.library }}
69
+ run : |
70
+ # This works because `node` is installed by default on GHA runners
71
+ CORES=$(node -e 'console.log(os.cpus().length)')
72
+ make verify CORES=$CORES
73
+
74
+ - name : Verify TestVectors Dafny code
75
+ if : ${{ matrix.library == 'TestVectors' }}
60
76
working-directory : ${{ matrix.library }}
61
77
run : |
62
78
# This works because `node` is installed by default on GHA runners
You can’t perform that action at this time.
0 commit comments