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

add H path

add H path #39

Workflow file for this run

name: Lint and Format
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
javaformat:
name: "Java Formatting"
runs-on: ubuntu-22.04
container: wpilib/ubuntu-base:22.04
steps:
- uses: actions/checkout@v3
- name: Fetch all history and metadata
run: |
git config --global --add safe.directory $GITHUB_WORKSPACE
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run Java format
run: ./gradlew spotlessCheck