diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..c27891b --- /dev/null +++ b/.github/workflows/ci.yaml @@ -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 \ No newline at end of file