From 5585c049fabb67f8043eb2461b961f4d9331dc2b Mon Sep 17 00:00:00 2001 From: Scott Leberknight <174812+sleberknight@users.noreply.github.com> Date: Tue, 2 May 2023 15:36:07 -0400 Subject: [PATCH] Add "print delomboked sources" workflow (#175) Closes #174 --- .../workflows/print-delomboked-sources.yml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/print-delomboked-sources.yml diff --git a/.github/workflows/print-delomboked-sources.yml b/.github/workflows/print-delomboked-sources.yml new file mode 100644 index 0000000..1651adc --- /dev/null +++ b/.github/workflows/print-delomboked-sources.yml @@ -0,0 +1,25 @@ +name: Print Delomboked Sources + +on: + workflow_dispatch: + # no inputs needed here + +jobs: + delombok-and-print: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Cache Maven packages + uses: actions/cache@v3 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + + - name: Run Delombok + uses: sleberknight/delombok-action@v0.7.0 + + - name: Print the Delomboked code + uses: sleberknight/print-delombok@v0.6.0