Skip to content

Commit

Permalink
Update maven.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
micycle1 authored Sep 28, 2023
1 parent 22e845a commit f6d1d2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
- name: Compile Runtime Test
run: |
JAR_FILE=$(ls target/core-*.jar | grep -v javadoc | grep -v sources)
javac -cp $JAR_FILE RuntimeTest.java
javac -cp $JAR_FILE test/RuntimeTest.java
- name: Run Runtime Test
run: |
JAR_FILE=$(ls target/core-*.jar | grep -v javadoc | grep -v sources)
java -cp $JAR_FILE:. RuntimeTest
java -cp $JAR_FILE:. test/RuntimeTest
- uses: actions/upload-artifact@v2
with:
name: core
Expand Down

0 comments on commit f6d1d2e

Please sign in to comment.