Bump commons-io:commons-io from 2.6 to 2.14.0 in /compilers/thingmltools #14
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: Testing | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Restore Maven cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }} | |
- name: Global Maven Build | |
run: mvn --batch-mode -Dmaven.test.failure.ignore clean install | |
- name: Language Maven Build | |
run: | | |
cd language | |
mvn --batch-mode -Dmaven.test.failure.ignore -pl !thingml.ui.tests install | |
#- name: Run tests | |
# run: | | |
# cd testing | |
# mvn test |