Skip to content

Bump org.jetbrains.kotlinx:kotlinx-coroutines-android from 1.8.0 to 1.8.1 #47

Bump org.jetbrains.kotlinx:kotlinx-coroutines-android from 1.8.0 to 1.8.1

Bump org.jetbrains.kotlinx:kotlinx-coroutines-android from 1.8.0 to 1.8.1 #47

Workflow file for this run

name: "Unit tests"
on:
# Allows to run this workflow when a commit it pushed to the branch
push:
paths-ignore:
- "**/*.md"
branches:
- main
# Allows to run this workflow when a Pull Request is made with the set target branch
pull_request:
paths-ignore:
- "**/*.md"
branches:
- main
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Up JDK
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
cache: "gradle"
- name: Cache Gradle and wrapper
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
- name: Change wrapper permissions
run: chmod +x ./gradlew
- name: Run unit tests
run: ./gradlew testReleaseUnitTest