Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/dope-196-all-fields-from…
Browse files Browse the repository at this point in the history
…-bucket' into feature/dope-196-all-fields-from-bucket
  • Loading branch information
jansigi committed Apr 19, 2024
2 parents cc4c101 + 4b3925d commit f3dd1da
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/kotlin_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Kotlin CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Run ktlint
run: ./gradlew ktlintCheck
- name: Run tests
run: ./gradlew test

0 comments on commit f3dd1da

Please sign in to comment.