Skip to content

chore: bump org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm from 1.9.0 to 1.10.1 in /graphql-kotlin #315

chore: bump org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm from 1.9.0 to 1.10.1 in /graphql-kotlin

chore: bump org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm from 1.9.0 to 1.10.1 in /graphql-kotlin #315

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: graphql-kotlin
on:
push:
paths:
- "graphql-kotlin/**"
branches: [ master ]
pull_request:
paths:
- "graphql-kotlin/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Setup Postgres in Docker
run: |
docker compose up -d postgres
docker ps -a
- name: Build with Gradle
run: |
cd graphql-kotlin
chmod +x gradlew
./gradlew build