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
kgilpin committed Nov 1, 2023
1 parent ace09fb commit d7a8df8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,20 @@ jobs:

- name: Run tests
run: bundle exec rails 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 d7a8df8

Please sign in to comment.