Skip to content

Commit

Permalink
ci: (AppMap) Run analysis via reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinbyrne committed Nov 1, 2023
1 parent 48f0071 commit 5173f13
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,21 @@ jobs:
cache: maven

- name: Maven Test
run: ./mvnw test
run: ./mvnw test

- name: Save AppMaps
uses: actions/cache/save@v3
if: always()
with:
path: ./tmp/appmap
key: appmaps-${{ github.sha }}-${{ github.run_attempt }}

appmap-analysis:
if: always()
needs: [ test ]
uses: getappmap/analyze-action/.github/workflows/appmap-analysis.yml@v1
permissions:
actions: read
contents: read
checks: write
pull-requests: write

0 comments on commit 5173f13

Please sign in to comment.