-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Action for testing ConfigDocsGenerator
- Loading branch information
1 parent
af4b18c
commit 4a7635f
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}} |