Skip to content

Commit

Permalink
Added test make target to the workflow runner
Browse files Browse the repository at this point in the history
  • Loading branch information
castmart committed Dec 12, 2023
1 parent 0e3aa5f commit 039721b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}."
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,7 @@ publish-to-ossrh:
GPG_SIGNING_KEY=${GPG_SIGNING_KEY} \
JCOUNTRY_VERSION=${version} \
./gradlew publish

.PHONY: test
test:
./gradlew test

0 comments on commit 039721b

Please sign in to comment.