add comments to parser #1152
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: Lphy tests | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
test-lphy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
cache: 'gradle' | |
# -x test | |
- name: Run build and all unit tests | |
run: ./gradlew build --no-daemon | |
- name: Publish unit test results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
junit_files: | | |
lphy/build/test-results/**/*.xml | |
lphy-studio/build/test-results/**/*.xml |