Lint and test job
Main Workflow / Lint and test library (pull_request) Successful in 9m31s
Details
Main Workflow / Lint and test library (pull_request) Successful in 9m31s
Details
This commit is contained in:
parent
d5deef82c1
commit
7ba3d69e9f
|
@ -7,3 +7,23 @@ on:
|
|||
branches:
|
||||
- main
|
||||
jobs:
|
||||
lint-and-test:
|
||||
name: Lint and test library
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Java
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: 'adopt'
|
||||
java-version: 17
|
||||
|
||||
- name: Verify Gradle wrapper
|
||||
uses: gradle/wrapper-validation-action@v1
|
||||
|
||||
- name: Setup Gradle
|
||||
uses: gradle/gradle-build-action@v2
|
||||
|
||||
- name: Run checks
|
||||
run: ./gradlew check
|
Reference in New Issue