Added DotTranspose to the set of explicitly vectorized operators #1064
This file contains hidden or 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: | |
| paths-ignore: | |
| - 'README.md' | |
| - 'ci/**' | |
| - 'docs-generator/**' | |
| - '.editorconfig' | |
| - 'LICENSE.txt' | |
| pull_request: | |
| jobs: | |
| Build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'corretto' | |
| # cache: 'gradle' | |
| # check-latest: true | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v3 | |
| - name: Build With Gradle | |
| run: ./gradlew assemble --parallel --console=plain --no-daemon | |
| - name: Upload Test Results | |
| uses: actions/upload-artifact@v4 | |
| if: ${{ always() }} | |
| with: | |
| name: build-report | |
| path: | | |
| **/build/**/test-results/**/* | | |
| **/build/**/reports/**/* |