[v202402052215] Added some code for json parsing for GitHub projects. #163
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 }}." |