Merge pull request #105 from usc-softarch/issue-104 #160
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: Windows Test | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
Explore-GitHub-Actions: | |
runs-on: windows-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Setup with Maven | |
run: mvn clean | |
- name: Build with Maven | |
run: mvn -e test | |
- run: echo "🍏 This job's status is ${{ job.status }}." |