Update plugin com.github.ben-manes.versions to v0.51.0 #129
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: | |
pull_request: | |
jobs: | |
ci-matrix: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3.0.2 | |
with: | |
fetch-depth: 100 | |
- name: Fetch tags | |
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/* | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: adopt | |
java-version: 11 | |
- name: gradle build ${{ github.ref }} | |
uses: burrunan/gradle-cache-action@v1 | |
with: | |
gradle-version: wrapper | |
arguments: --no-parallel --no-daemon --build-cache build assembleDebug | |
ci: | |
runs-on: ubuntu-20.04 | |
needs: [ci-matrix] | |
steps: | |
- name: Aggregate of lint, and all tests | |
run: echo "ci passed" |