Skip to content

Commit

Permalink
DROP: testing file
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoreliovlabs committed Sep 25, 2024
1 parent f007ee9 commit 8f7b9f1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/code_quality_check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Code Convention Verification
name: Code Quality Check

on:
push:
Expand All @@ -15,6 +15,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch full history for accurate git commands

- name: Debug Git Output
run: |
echo "Committed files:"
git log --name-only --pretty=format:
echo "Uncommitted files:"
git diff --name-only
echo "Staged files:"
git diff --cached --name-only
- name: Setup Java & Gradle
uses: actions/setup-java@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ public class GarbageCollectorConfig {
private final int blocksPerEpoch;
private final int numberOfEpochs;


//asdasdasdsdsd

public GarbageCollectorConfig(boolean enabled, int blocksPerEpoch, int numberOfEpochs) {
this.enabled = enabled;
this.blocksPerEpoch = blocksPerEpoch;
Expand Down

0 comments on commit 8f7b9f1

Please sign in to comment.