From 4a9f4b39c77e2c105b4fd5777b1f02eb9041626a Mon Sep 17 00:00:00 2001 From: Taran Nathan Date: Wed, 13 May 2026 16:39:57 -0700 Subject: [PATCH] add formatting workflow --- .github/workflows/autofmt.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/autofmt.yml 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" -- 2.39.5