refactor: expose coroutine APIs and remove unnecessary async
#96
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: Run Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: "Test library" | |
runs-on: macos-12 | |
steps: | |
- name: "Check out PR branch" | |
uses: actions/checkout@v2 | |
- name: "Set up JDK" | |
uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: "Run tests" | |
run: ./gradlew test --console=plain |