Add coroutine scope to Lifetime #750
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: rd-kt | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-11, windows-2019] | |
fail-fast: false | |
env: | |
GRADLE_USER_HOME: ${{ github.workspace }}/.github/gradle | |
TEAMCITY_VERSION: 1 # temporary; to disable cross tests | |
timeout-minutes: 25 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Gradle Wrapper Cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.GRADLE_USER_HOME }}/wrapper | |
key: ${{ runner.os }}.gradle-wrapper.${{ hashFiles('gradle/**') }} | |
- name: Gradle Cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.GRADLE_USER_HOME }}/caches/modules-2 | |
key: ${{ runner.os }}.gradle.${{ hashFiles('**/*.gradle.kts') }} | |
- name: Assemble | |
run: ./gradlew assemble | |
- name: Build | |
run: ./gradlew build | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v2.2.4 | |
if: ${{ always() }} | |
with: | |
name: tests-log.${{ runner.os }} | |
path: "**/reports/*" | |
validation: | |
runs-on: ubuntu-22.04 | |
name: "Validate Gradle wrapper" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: gradle/wrapper-validation-action@v1 |