Skip to content

Add a simple CI pipeline (now that it is free for public repo) #1

Add a simple CI pipeline (now that it is free for public repo)

Add a simple CI pipeline (now that it is free for public repo) #1

Workflow file for this run

name: Build
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Compile and run unit tests
run: ./gradlew test