Skip to content

Unit Tests

Unit Tests #180

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- latest
tags:
- "v*"
schedule:
- cron: "0 5 * * 3"
jobs:
build:
name: Test Application
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-test-${{ hashFiles('gradlew') }}
- uses: actions/setup-java@v3
with:
distribution: "adopt"
java-version: "17"
- run: ./gradlew test