Skip to content

chore: Rewrite README.md. Rename the project back to Konf to prevent … #3

chore: Rewrite README.md. Rename the project back to Konf to prevent …

chore: Rewrite README.md. Rename the project back to Konf to prevent … #3

Workflow file for this run

name: Konf CI
on: [ push ]
jobs:
build:
name: Build on JDK ${{ matrix.java_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
java_version: [ 17, 21 ]
os: [ ubuntu-latest, windows-latest, macOS-latest ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
- name: Build with Gradle
run: ./gradlew build
- name: Test with Gradle
run: ./gradlew test