Skip to content

chore(build): update publishing configuration across all projects #1

chore(build): update publishing configuration across all projects

chore(build): update publishing configuration across all projects #1

Workflow file for this run

name: Kotlin CI
on:
push:
pull_request:
branches:
- 'main'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: "Build"
run: ./gradlew build --no-daemon
- name: "Test"
run: ./gradlew test --no-daemon