Skip to content

Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.13.0 (#158) #64

Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.13.0 (#158)

Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.13.0 (#158) #64

Workflow file for this run

name: coverage
on:
push:
branches: [ main ]
jobs:
create-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '16'
distribution: 'adopt'
- name: Generate and upload coverage report
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: ./gradlew build jacocoTestReport coveralls
- name: Cleanup Gradle Cache
# Remove some files from the Gradle cache, so they aren't cached by GitHub Actions.
# Restoring these files from a GitHub Actions cache might cause problems for future builds.
run: |
rm -f ~/.gradle/caches/modules-2/modules-2.lock
rm -f ~/.gradle/caches/modules-2/gc.properties