Skip to content

Commit

Permalink
Add GitHub Action for testing ConfigDocsGenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronweissler committed Mar 24, 2022
1 parent af4b18c commit 4a7635f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/configdocsgenerator_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ConfigDocsGenerator Tests

on:
push:
branches:
- master
pull_request:
paths:
- '.github/workflows/configdocsgenerator_test.yml'
- 'components/inspectit-ocelot-configdocsgenerator/**'
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
working-directory: ./components/inspectit-ocelot-configdocsgenerator
container: openjdk:8-jdk
steps:
- uses: actions/checkout@v2
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: test
run: ../../gradlew test
working-directory: ${{env.working-directory}}

0 comments on commit 4a7635f

Please # to comment.