From: Alexander Goussas Date: Fri, 24 Oct 2025 17:21:19 +0000 (-0500) Subject: ci: add gh workflow to run tests X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=4ea6d49717bfa4a4f855e4333f061bfbb81cb4ab;p=gradle-changelog-plugin.git ci: add gh workflow to run tests --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..03b9858 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,22 @@ +name: Run tests + +on: + push: + branches: [ main ] + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up JDK + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 21 + + - name: Run tests + run: ./gradlew :changelog-plugin:test