Add Features and Limits to Adapter and Device (#249) #605
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: build | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- 'README.md' | |
- 'CHANGELOG.md' | |
- 'examples/' | |
- 'art/' | |
- '.run/' | |
pull_request: | |
branches: [ master ] | |
types: [ opened, synchronize, reopened, ready_for_review ] | |
paths-ignore: | |
- 'README.md' | |
- 'CHANGELOG.md' | |
- 'examples/' | |
- 'art/' | |
- '.run/' | |
jobs: | |
build: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Java JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: 17 | |
distribution: adopt | |
- name: Grant gradlew execution permissions | |
run: chmod +x gradlew | |
- name: Start Gradle | |
run: ./gradlew | |
- name: Test JVM Target | |
run: ./gradlew core:jvmTest | |
- name: Test JS Target | |
run: ./gradlew core:jsTest |