Skip to content

Commit

Permalink
Merge pull request #2 from ArchibaldBienetre/set-up-circleci
Browse files Browse the repository at this point in the history
Set up CircleCi
  • Loading branch information
DonMischo committed Oct 4, 2021
2 parents 49dbc05 + 48972d0 commit c22aeb3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2.1

jobs:
run_tests_java:
docker:
- image: cimg/openjdk:8.0.292
steps:
- checkout
- run: |
./gradlew clean test
- store_test_results:
path: build/test-results
- store_artifacts:
path: build/test-results

workflows:
version: 2
run_tests:
jobs:
- run_tests_java

0 comments on commit c22aeb3

Please sign in to comment.