upgrade Kotlin version to 2.0.0-Beta2, upgrade Kotlinx Coroutine vers… #19
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: Publish Yo Fw package to GitHub Packages | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
publish: | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache Gradle Packages | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-gradle-packages | |
with: | |
# gradle cache & wrapper files are stored in `~/.gradle` on Linux/macOS | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }} | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: '15' | |
distribution: 'adopt-openj9' | |
- name: Compiles the production code | |
run: ./gradlew clean compile | |
- name: Runs all tests code | |
run: ./gradlew test | |
- name: Runs detekt check for static code analysis | |
run: ./gradlew detekt | |
- name: Publish to maven local cache | |
run: ./gradlew localPublish | |
# - name: Publish package to GPR | |
# run: ./gradlew publish | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |