Skip to content

Commit

Permalink
create ktor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aleixo-dev authored May 20, 2024
1 parent 087f1d8 commit 68b8f6a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ktor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Ktor CI

on: [pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run unit tests
run: ./gradlew test
- name: Build with Gradle
run: ./gradlew build

0 comments on commit 68b8f6a

Please sign in to comment.