Skip to content

Merge branch '2025' into no_lasercan #17

Merge branch '2025' into no_lasercan

Merge branch '2025' into no_lasercan #17

Workflow file for this run

# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Spotless formatting check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
# Use the WPILib docker container
container: wpilib/roborio-cross-ubuntu:2024-22.04
steps:
- uses: actions/checkout@v4
# Declare the repository safe
- name: Add repository to git safe directories
run: git config --global --add safe.directory $GITHUB_WORKSPACE
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Check formatting with Spotless
run: ./gradlew spotlessCheck