Update README.md license scanning #2
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: License Scanning for Gradle | |
on: | |
push: | |
jobs: | |
license-scan: | |
runs-on: ubuntu-latest | |
name: License Scan | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
- name: License Scanning | |
run: ./gradlew check | |
working-directory: gradle |