Skip to content

Commit

Permalink
initial CI
Browse files Browse the repository at this point in the history
  • Loading branch information
danny-prodbase committed Sep 2, 2023
1 parent be2c65d commit 0d51d59
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ jobs:
- name: Compile
run: |
javac -cp "lib/*" -d . src/*.java tests/*.java
# Recursively find and compile all .java files under src and tests directories
find src tests -name "*.java" > sources.txt
javac -cp "lib/*" -d . @sources.txt
- name: Run tests
run: |
Expand Down

0 comments on commit 0d51d59

Please sign in to comment.