Add Delete By Keys, DeleteBy(read/write) #17
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: Checks | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
#run-android-tests: | |
jvm-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '21' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Verify SqlDelight Migration | |
run: ./gradlew verifySqlDelightMigration | |
- name: Build and publish | |
run: ./gradlew jvmTest | |
- name: JUnit Report | |
uses: mikepenz/action-junit-report@v4 | |
if: always() | |
with: | |
check_name: JVM Test Results | |
report_paths: '**/build/test-results/jvmTest/**/*.xml' | |
require_tests: true | |