Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6bc3da1

Browse files
committedMar 27, 2024
Merge branch 'main' into rishav-feat-parser
2 parents 23b5de7 + 56f1cd1 commit 6bc3da1

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed
 

‎.github/workflows/ci_test_net.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,12 @@ jobs:
104104
else
105105
make test_net FRAMEWORK=net6.0
106106
fi
107+
108+
- name: Test Build and Pack ${{ matrix.library}}
109+
shell: bash
110+
if: matrix.os != 'windows-latest'
111+
working-directory: ./${{ matrix.library }}
112+
run: |
113+
dotnet build runtimes/net /p:Configuration=Release -nowarn:CS0162,CS0168
114+
dotnet pack runtimes/net/DynamoDbEncryption.csproj --no-build /p:Configuration=Release --output build
115+

‎DynamoDbEncryption/runtimes/java/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ dependencies {
117117
// https://mvnrepository.com/artifact/edu.umd.cs.mtc/multithreadedtc
118118
testImplementation("edu.umd.cs.mtc:multithreadedtc:1.01")
119119
// https://mvnrepository.com/artifact/org.projectlombok/lombok
120-
testImplementation("org.projectlombok:lombok:1.18.30")
121-
testAnnotationProcessor("org.projectlombok:lombok:1.18.30")
120+
testImplementation("org.projectlombok:lombok:1.18.32")
121+
testAnnotationProcessor("org.projectlombok:lombok:1.18.32")
122122
}
123123

124124
publishing {

0 commit comments

Comments
 (0)
Please sign in to comment.