Skip to content

Commit

Permalink
feat(build): added test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zZHorizonZz committed Aug 7, 2024
1 parent f12e799 commit 755ed3a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ jobs:
distribution: ${{ env.DISTRIBUTION }}
cache: maven

- name: Generate Development Key Pair
run: |
mkdir -p src/main/resources
openssl genpkey -algorithm RSA -out src/main/resources/dev-private-key.pem -pkeyopt rsa_keygen_bits:2048
openssl rsa -in src/main/resources/dev-private-key.pem -pubout -out src/main/resources/dev-public-key.pem
- name: Run Tests
run: mvn clean test ${{ matrix.build_args }}

Expand Down

0 comments on commit 755ed3a

Please sign in to comment.