Skip to content

build(deps): bump com.github.ajalt.clikt:clikt in /kotlin (#248) #62

build(deps): bump com.github.ajalt.clikt:clikt in /kotlin (#248)

build(deps): bump com.github.ajalt.clikt:clikt in /kotlin (#248) #62

Workflow file for this run

name: Kotlin
on:
push:
branches:
- main
paths:
- "kotlin/**"
- ".github/workflows/gradle.yml"
pull_request:
paths:
- "kotlin/**"
- ".github/workflows/gradle.yml"
# Cancel previous runs for PRs but not pushes to main
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'gradle'
- name: Build with Gradle
working-directory: kotlin
run: chmod +x build.sh && ./build.sh
shell: bash