Flag use of Unicode less-than and greater-than characters in FilePath to be a Windows-only change #235
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: Pull Request Validation | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
env: | |
# Set LANG=C to simulate least-common-denominator target deployment environments: | |
LANG: C | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Run mill tests | |
run: ./mill __.test | |
- name: Compile with sbt | |
run: sbt compile bench/compile bench/jmh:compile | |
- name: Run sbt tests | |
run: sbt test |