Skip to content

Commit

Permalink
revertme: (AppMap) Enable install-action to commit to the branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinbyrne committed Nov 1, 2023
1 parent 5173f13 commit 4ac946d
Showing 1 changed file with 3 additions and 23 deletions.
26 changes: 3 additions & 23 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
name: build

on:
push:
branches:
- main
pull_request:
schedule:
- cron: '0 0 * * 0'

jobs:
test:
Expand All @@ -17,6 +12,8 @@ jobs:
- run: 'sudo chmod +x /usr/libexec/docker/cli-plugins/docker-compose'

- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}

- name: Set up JDK 17
uses: actions/setup-java@v2
Expand All @@ -26,21 +23,4 @@ jobs:
cache: maven

- name: Maven 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
run: ./mvnw test

0 comments on commit 4ac946d

Please sign in to comment.