Don't directly depend on coroutines lib #10
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, Test, Release | |
on: | |
push: | |
branches: [ "**" ] | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Gradle to support advanced caching | |
uses: gradle/[email protected] | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build release with Gradle | |
run: ./gradlew assemble check | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: '**/build/test-results/**/*.xml' | |
# - name: Build release with Gradle | |
# run: ./gradlew publish |