Skip to content

drivetrian

drivetrian #4663

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
container: wpilib/roborio-cross-ubuntu:2025-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1.0.6
- name: Grant execute permission
run: chmod +x gradlew
- name: Build with Gradle
uses: gradle/gradle-build-action@v2.4.0
with:
arguments: build -x spotlessApply