Skip to content

Accept 1 and 0 instead of true and false for booleans to workaround https://github.com/wpilibsuite/allwpilib/issues/6835. #105

Accept 1 and 0 instead of true and false for booleans to workaround https://github.com/wpilibsuite/allwpilib/issues/6835.

Accept 1 and 0 instead of true and false for booleans to workaround https://github.com/wpilibsuite/allwpilib/issues/6835. #105

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build