Report malformed data file error when an input data file fails to parse #244
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: CI | |
on: | |
pull_request: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: gwen-web | |
- name: Checkout Gwen core repo | |
uses: actions/checkout@v2 | |
with: | |
repository: gwen-interpreter/gwen | |
path: gwen | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 11 | |
cache: sbt | |
- name: Setup Chrome | |
uses: browser-actions/setup-chrome@latest | |
- name: Build and Test | |
working-directory: ./gwen-web | |
run: sbt -v -Dfile.encoding=UTF-8 -Dgwen.target.browser=chrome -Dgwen.web.browser.headless=true +test |