Skip to content

Commit

Permalink
Merge pull request #57 from MarshallWace/actions
Browse files Browse the repository at this point in the history
github workflow BuildTest for every PR
  • Loading branch information
mw-lb authored Oct 7, 2024
2 parents a64e0b4 + c1ca87d commit 74d7f4b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/BuiltTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and test
on:
pull_request:
jobs:
build-test-package:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 21
cache: gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build and test
run: ./gradlew build
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2024 Marshall Wace <[email protected]>
*
* SPDX-License-Identifier: Apache-2.0
*/

package com.mwam.kafkakewl.domain

import kotlinx.serialization.SerialName
Expand Down

0 comments on commit 74d7f4b

Please sign in to comment.