Skip to content

Commit

Permalink
feat: Refactor random data generation to use RandomProvider trait
Browse files Browse the repository at this point in the history
Replaced randomDigit and related methods with the generalized RandomProvider trait for a cleaner and more extensible design. Enhanced readability and maintainability by introducing implicit providers for common data types and improving validation logic. Updated feeder implementations and other code references to use the new randomValue abstraction.
  • Loading branch information
jigarkhwar committed Dec 10, 2024
1 parent 3faf761 commit 1e94fde
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
java-version: openjdk@1.17

- name: Test Release
run: sbt -DjavaOptions="-Xmx4G -XX:+UseG1GC" clean scalafmtCheckAll scalafmtSbtCheck compile test
run: sbt clean scalafmtCheckAll scalafmtSbtCheck compile test

publish:
name: Publish Release
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lazy val root = (project in file("."))
.enablePlugins(GitVersioning)
.settings(
name := "gatling-picatinny",
scalaVersion := "2.13.14",
scalaVersion := "2.13.15",
libraryDependencies ++= gatlingCore,
libraryDependencies ++= gatling,
libraryDependencies ++= fastUUID,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# suppress inspection "UnusedProperty"
sbt.version=1.10.0
sbt.version=1.10.6
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.9.0")
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.10.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

0 comments on commit 1e94fde

Please sign in to comment.