From 085ef03319819e0afa26e0f0595ac934b2a51942 Mon Sep 17 00:00:00 2001 From: cautum1-dev Date: Tue, 6 Jan 2026 18:40:18 +0700 Subject: [PATCH 1/3] Add CI workflow for Scala with JDK 11 setup This workflow is triggered on pushes and pull requests to the master branch, setting up JDK 11 and running tests using sbt. --- .github/workflows/scala.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/scala.yml diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml new file mode 100644 index 0000000..ff72d2b --- /dev/null +++ b/.github/workflows/scala.yml @@ -0,0 +1,34 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Scala CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 11 + uses: actions/setup-java@v4 + 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 From 4a0b882017a904545e283b37af0effea6cdc150a Mon Sep 17 00:00:00 2001 From: cautum1-dev Date: Tue, 6 Jan 2026 19:06:42 +0700 Subject: [PATCH 2/3] Add README.md file --- README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ + From bf82d1b65d0b8634beb893bfe574e5fe4bbe3c1f Mon Sep 17 00:00:00 2001 From: cautum1-dev Date: Tue, 6 Jan 2026 19:32:56 +0700 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d1c8b6..f5eea67 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ - +a