Skip to content

Commit

Permalink
Create GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaming32 committed Oct 31, 2021
1 parent c5ed8e0 commit 4666177
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
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

0 comments on commit 4666177

Please sign in to comment.