Skip to content

Commit

Permalink
gh-2: adds github action to check linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pmhsfelix committed Oct 3, 2022
1 parent 7f64949 commit 0de3740
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Continuous Integration

on: [push]

jobs:
build:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Java 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build with Gradle
run: code/tic-tac-tow-service/gradlew -p code/tic-tac-tow-service ktlint

0 comments on commit 0de3740

Please sign in to comment.