Skip to content

Fix integration test stage in GitHub CI workflow #131

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitguardian.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
exclusions:
- "env.properties.example"
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
distribution: 'adopt'
architecture: 'x64'

- name: Copy env.properties
run: cp env.properties.example env.properties

- name: Run unit tests
run: mvn verify

Expand Down
4 changes: 2 additions & 2 deletions env.properties.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ DATABASE_HOST=<DATABASE HOST AND PORT>
DATABASE_USERNAME=<DATABASE USERNAME>
DATABASE_PASSWORD=<DATABASE PASSWORD>

JWT_SECRET_KEY=<GENERATED SECRET KEY>
JWT_EXPIRATION_TIME=<TOKEN EXPIRATION TIME>
JWT_SECRET_KEY=ce83b9f1cfe7f191cf5efb12770e4f0b61a0f287d5f2b48c47bda6c3f4d50c5d
JWT_EXPIRATION_TIME=3600000

SUPER_ADMIN_NAME=<SUPER ADMIN NAME>
SUPER_ADMIN_EMAIL=<SUPER ADMIN EMAIL>
Expand Down
Loading