Skip to content

Commit

Permalink
test patch
Browse files Browse the repository at this point in the history
  • Loading branch information
gokris165 committed Jun 3, 2024
1 parent 84b2f06 commit e1a5b5d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Build Modules

on:
workflow_call:
pull_request:
branches: main

jobs:
# Github Action to detect file changes between
Expand Down Expand Up @@ -121,3 +122,14 @@ jobs:
- name: Run maven package on BundleServer
working-directory: ./bundleserver
run: mvn package

call-auto-formatter:
needs:
[
changes,
build-bundle-core,
build-bundle-client,
build-bundle-transport,
build-bundle-server,
]
uses: ./.github/workflows/reformat.yml
8 changes: 1 addition & 7 deletions .github/workflows/reformat.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: Re-format Code

on:
pull_request:
branches:
- main
workflow_call:

env:
finished: false
Expand Down Expand Up @@ -33,7 +31,3 @@ jobs:
git config user.email "github-actions[bot]@users.noreply.github.com"
git commit -a -m "Auto-format code"
git push
call-workflow:
needs: format
uses: SJSU-CS-systems-group/DDD/.github/workflows/actions.yml@ba7f3913332bf7be1ce857ca16491e19ae0fa67f
11 changes: 11 additions & 0 deletions BundleClient/app/src/main/java/com/ddd/utils/JarUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@

import java.util.Enumeration;












import java.util.jar.Attributes;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
Expand Down

0 comments on commit e1a5b5d

Please sign in to comment.