diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index ca1b4b6..7e60c0d 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -15,20 +15,19 @@ permissions: contents: write jobs: - build: - + main: + name: Run Tests runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: '11' - distribution: 'temurin' - cache: 'sbt' - - name: Run tests - run: sbt test - # Optional: This step uploads information to the GitHub dependency graph and unblocking Dependabot alerts for the repository - - name: Upload dependency graph - uses: scalacenter/sbt-dependency-submission@ab086b50c947c9774b70f39fc7f6e20ca2706c91 + - uses: actions/checkout@v3 + - name: Set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + cache: 'sbt' + - name: Run tests + run: sbt test + # Optional: This step uploads information to the GitHub dependency graph and unblocking Dependabot alerts for the repository + - name: Upload dependency graph + uses: scalacenter/sbt-dependency-submission@ab086b50c947c9774b70f39fc7f6e20ca2706c91 diff --git a/README.md b/README.md index e57e0b0..54d66a9 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ implementation by selectively returning either the `***` string, or the value of ```scala 3 def toString(): String = - "(" + this. + ",***" + ... + ")" + "(" + this. + "," + "***" + ... + ")" ``` ## Improvements