Finalize reproduction scripts #4
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
name: Example Dataset Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-12, macos-latest, windows-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Compile on Mac or Ubuntu | |
if: matrix.os != 'windows-latest' | |
run: | | |
javac -encoding UTF-8 -cp src:lib/commons-cli-1.5.0.jar src/acrostics/*.java | |
- name: Compile on Windows | |
if: matrix.os == 'windows-latest' | |
run: | | |
javac -encoding UTF-8 -cp src:lib/commons-cli-1.5.0.jar src/acrostics/*.java | |
- name: Test | |
run: | | |
java -cp src:lib/commons-cli-1.5.0.jar acrostics.Main -input data/example -language EN -mode LINE -charset utf-8 -outputSize 4000 --concise > result.tsv | |
diff -w result.tsv .github/workflows/exampleExpectedResult.tsv |