KI-40 [core, tfjs] Add missing tests for Size operator #451
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: Build | |
on: [ push, pull_request ] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
# cache: 'gradle' | |
# check-latest: true | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- name: Build With Gradle | |
run: ./gradlew assemble --parallel --console=plain --no-daemon | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v3 | |
if: ${{ always() }} | |
with: | |
name: test-report | |
path: | | |
**/build/**/test-results/**/* | | |
**/build/**/reports/**/* |