-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from HolyGrailSortProject/tester-improvements
Tester improvements
- Loading branch information
Showing
4 changed files
with
481 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Test sorts | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
test_java: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: "Holy Grail Sort/Java/Summer Dragonfly et al.'s Rough Draft" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Java | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 8 | ||
distribution: zulu | ||
- name: Build Tester | ||
run: javac -d bin src/holygrail/*.java | ||
- name: Run Tester | ||
run: java -cp bin holygrail.Tester |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.