Skip to content

Commit

Permalink
Add "print delomboked sources" workflow (#175)
Browse files Browse the repository at this point in the history
Closes #174
  • Loading branch information
sleberknight authored May 2, 2023
1 parent fb47fe4 commit 5585c04
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/print-delomboked-sources.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5585c04

Please sign in to comment.