Fix running the evaluator from the CLI #106
Workflow file for this run
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: build | |
on: | |
pull_request: | |
env: | |
LC_ALL: en_US.UTF-8 | |
REPOSITORY_USERNAME: ${{ secrets.REPOSITORY_USERNAME }} | |
REPOSITORY_PASSWORD: ${{ secrets.REPOSITORY_PASSWORD }} | |
jobs: | |
build: | |
name: build on OpenJDK Linux (just changing name for testing with new commit) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- shell: bash | |
run: ./gradlew --parallel build | |
- if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-reports | |
path: '*/target/reports' | |