diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3bf7e46..4780dda 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v4 - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository + - name: Execute tests run: | - ls ${{ github.workspace }} + make test - run: echo "🍏 This job's status is ${{ job.status }}." diff --git a/Makefile b/Makefile index 8bea4e1..ea312b2 100644 --- a/Makefile +++ b/Makefile @@ -43,3 +43,7 @@ publish-to-ossrh: GPG_SIGNING_KEY=${GPG_SIGNING_KEY} \ JCOUNTRY_VERSION=${version} \ ./gradlew publish + +.PHONY: test +test: + ./gradlew test