Skip to content

Bump org.jetbrains.kotlinx:kotlinx-coroutines-jdk8 from 1.6.4 to 1.7.3 #285

Bump org.jetbrains.kotlinx:kotlinx-coroutines-jdk8 from 1.6.4 to 1.7.3

Bump org.jetbrains.kotlinx:kotlinx-coroutines-jdk8 from 1.6.4 to 1.7.3 #285

Workflow file for this run

name: CI
on: [ pull_request ]
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
# creates a new check with unit test results
checks: write
# needs to git diff the repo
contents: read
# find the pr for this commit
issues: read
# write artifacts and comment on pr related to this
pull-requests: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 8
cache: 'gradle'
- name: clean build
run: ./gradlew clean build --no-daemon --info --stacktrace
- name: Upload Test Results
# see ci-test.check.yml for workflow that publishes test results without security issues for forks
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: check-ci-results
path: '**/build/test-results/test/TEST-*.xml'