Skip to content

Commit

Permalink
ci: add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yuuahp committed May 19, 2024
1 parent 4035e48 commit 07932d3
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:
pull_request:
workflow_dispatch:

jobs:
run-tests:
runs-on: ubuntu-latest

steps:
- name: πŸ“₯ Checkout ${{ github.repository }}
uses: actions/checkout@v4

- name: β˜• Setup Java 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'

- name: 🐘 Setup Gradle
uses: gradle/actions/setup-gradle@v3

- name: βœ… Run Tests
run: ./gradlew test

0 comments on commit 07932d3

Please sign in to comment.