diff options
author | Keuin <[email protected]> | 2022-09-17 17:38:49 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2022-09-29 00:39:10 +0800 |
commit | e32d3e9a5086f36e3f43a6c8a37fe418f1a5069a (patch) | |
tree | dd4628b540690ec85ffd86a5bf6b4cf6242d98a5 /.github/workflows | |
parent | 66a027d6c9c2fd8a9877f8b81f811e95a729cbbb (diff) |
Run test with GitHub actions when pushing or receiving pull requests.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/run-tests.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml new file mode 100644 index 0000000..5795379 --- /dev/null +++ b/.github/workflows/run-tests.yml @@ -0,0 +1,23 @@ +name: build-and-test + +on: [ push, pull_request ] + +jobs: + build: + runs-on: windows-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Set up JDK + uses: actions/setup-java@v3 + with: + java-version: '15' + distribution: 'adopt' + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@v1 + - name: Setup Gradle + uses: gradle/gradle-build-action@v2 + - name: Gradle build + run: ./gradlew build + - name: Gradle test + run: ./gradlew test |