Skip to content

Commit

Permalink
chore: add PR check to verify examples
Browse files Browse the repository at this point in the history
  • Loading branch information
anssari1 committed Dec 17, 2024
1 parent 9b0307f commit cbfd04c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/verify-examples.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Verify Examples
on:
pull_request:
branches:
- 'main'
jobs:
detect-changes:
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
examples: ${{ steps.filter.outputs.examples }}
steps:
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
examples:
- 'examples/**'
verify-examples:
needs: detect-changes
if: ${{ needs.detect-changes.outputs.examples == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- name: verify examples
working-directory: examples
run: mvn clean install

0 comments on commit cbfd04c

Please sign in to comment.