Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

Release: v0.2.0

Release: v0.2.0 #6

name: Test Main Branch
on:
pull_request:
branches:
- 'main'
env:
IS_CI: true
GRADLE_OPTS: "-Dfile.encoding=UTF-8"
jobs:
build-test:
name: Build and test main
strategy:
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
cache: 'gradle'
- name: Run All Tests
uses: gradle/gradle-build-action@v2
with:
gradle-version: 8.5
arguments: |
assemble
build
allTests
--info
--warning-mode all