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 737c9a5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .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 @@ -14,7 +14,11 @@ jobs:
checkstyle-and-spotless:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout branch
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }} # Checkout the branch of the pull request
fetch-depth: 0

- 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 737c9a5

Please sign in to comment.