Skip to content

Commit

Permalink
Actions for gradle test
Browse files Browse the repository at this point in the history
  • Loading branch information
Rongmario committed Apr 27, 2024
1 parent 5e8ddcb commit 25e60a1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on:
workflow_dispatch

jobs:
test:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Grant Execute Permission for gradlew
run: chmod +x gradlew
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Gradle Test
run: ./gradlew test

0 comments on commit 25e60a1

Please sign in to comment.