rename junit-platform-console-standalone-1.9.0.jar; document how to build it #31
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
pull_request: | |
branches: | |
- '*' | |
env: | |
ORG_GRADLE_PROJECT_enableTestDistribution: true | |
ORG_GRADLE_PROJECT_junitBuildCacheUsername: ${{ secrets.BUILD_CACHE_USERNAME }} | |
ORG_GRADLE_PROJECT_junitBuildCachePassword: ${{ secrets.BUILD_CACHE_PASSWORD }} | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
jobs: | |
Linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Install Graphviz | |
run: | | |
sudo apt-get update | |
sudo apt-get install graphviz | |
- name: Build | |
uses: ./.github/actions/main-build | |
with: | |
arguments: | | |
-PenableJaCoCo | |
build | |
jacocoRootReport | |
prepareDocsForUploadToGhPages | |
- name: Upload to Codecov.io | |
uses: codecov/codecov-action@v2 |