This is an automated email from the ASF dual-hosted git repository.
slawrence pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil.git
The following commit(s) were added to refs/heads/main by this push:
new 690ee3973 Add osgiCheck to CI build
690ee3973 is described below
commit 690ee39739d4945410e4d5656e2c719a580fcc78
Author: Mike McGann <[email protected]>
AuthorDate: Tue Feb 7 14:20:48 2023 -0500
Add osgiCheck to CI build
This change adds the sbt task, osgiCheck, to the build workflow.
DAFFODIL-2683
---
.github/workflows/main.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index a39071158..a33a54b46 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -161,6 +161,9 @@ jobs:
- name: Run Rat Check
run: $SBT ratCheck || (cat target/rat.txt; exit 1)
+ - name: Run OSGI Check
+ run: $SBT osgiCheck
+
- name: Run Unit Tests
run: $SBT test