Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

ci(release): fixed configuration error #2

ci(release): fixed configuration error

ci(release): fixed configuration error #2

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
unit-test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'oracle'
cache: gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run Tests
run: ./gradlew test