Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

[NO TASK] Fix oneOf comparisons for both Booleans and Numbers #26

[NO TASK] Fix oneOf comparisons for both Booleans and Numbers

[NO TASK] Fix oneOf comparisons for both Booleans and Numbers #26

Workflow file for this run

name: Test and lint SDK
on:
pull_request:
paths:
- '**/*'
jobs:
lint-test-sdk:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: ['11'] # Define the Java versions to test against
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'adopt'
- name: Run tests
run: make test