Skip to content

docs: contributing and code of conduct #15

docs: contributing and code of conduct

docs: contributing and code of conduct #15

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Unit and Integration tests
run: ./gradlew clean build