Get rid of generic hell. Use custom descriptor types. Use tabs #13
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: | |
- master | |
pull_request: | |
branches: | |
- master | |
permissions: | |
checks: write | |
pull-requests: write | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Setup Java JDK | |
uses: actions/setup-java@v2.5.0 | |
with: | |
distribution: adopt-hotspot | |
java-version: 8 | |
- run: ./gradlew --info build |