Skip to content

chore: fix ci (#393) #37

chore: fix ci (#393)

chore: fix ci (#393) #37

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'zulu'
- name: Build
run: ./gradlew build
- name: Test
run: ./gradlew test --info