From: Taran Nathan Date: Wed, 13 May 2026 23:39:57 +0000 (-0700) Subject: add formatting workflow X-Git-Url: https://git.taranathan.com/?a=commitdiff_plain;h=4a9f4b39c77e2c105b4fd5777b1f02eb9041626a;p=FRC2027.git add formatting workflow --- diff --git a/.github/workflows/autofmt.yml b/.github/workflows/autofmt.yml new file mode 100644 index 0000000..0e6131c --- /dev/null +++ b/.github/workflows/autofmt.yml @@ -0,0 +1,15 @@ +name: Format + +on: + push: + branches: [ master ] + +jobs: + + formatting: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 # v2 minimum required + - uses: axel-op/googlejavaformat-action@v4 + with: + args: "--skip-sorting-imports --replace"