Skip to content

Commit

Permalink
use a jar with no rule violations for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Timbals committed Jan 11, 2024
1 parent fc41763 commit c8d5022
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ jobs:
- name: Run CogniCrypt
uses: ./
with:
appPath: "$(pwd)/CryptoAnalysisTargets/CogniCryptDemoExample/Examples.jar"
basePath: "CryptoAnalysisTargets/CogniCryptDemoExample/src/main/java"
appPath: "CryptoAnalysisTargets/HelloWorld/HelloWorld.jar"
basePath: "CryptoAnalysisTargets/HelloWorld"
Binary file added CryptoAnalysisTargets/HelloWorld/HelloWorld.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions CryptoAnalysisTargets/HelloWorld/HelloWorld.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}

0 comments on commit c8d5022

Please sign in to comment.