Fix Bug Causing Comparison Image to Enlarge and Enhance Performance by Avoiding Creation of Unnecessary Canvases #292
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: plain-tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx6g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" | |
jobs: | |
test: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: 19 | |
- name: Gradle cache | |
uses: gradle/gradle-build-action@v2 | |
- name: tests | |
id: test | |
run: | | |
./gradlew test --stacktrace -x testReleaseUnitTest | |
- name: include build tests | |
id: include-build-test | |
run: | | |
cd include-build | |
./gradlew test jvmTest --stacktrace -x testReleaseUnitTest | |
- uses: actions/upload-artifact@v3 | |
if: ${{ always() }} | |
with: | |
name: tests-reports | |
path: | | |
**/build/reports | |
**/build/outputs/roborazzi | |
retention-days: 30 |