Skip to content

Commit 8615ee3

Browse files
derrickburnsclaude
andcommitted
test: add lint job back (without scalafmt)
Testing if lint job causes the workflow failure. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 66f5b33 commit 8615ee3

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,18 @@ env:
2020
SBT_OPTS: "-Xms2g -Xmx4g -XX:+UseG1GC -Dsbt.log.noformat=true"
2121

2222
jobs:
23-
# Job 0: Simple test to verify workflow is accepted
24-
test-minimal:
23+
# Job 0: Linting and Code Style (fast gate)
24+
lint:
2525
runs-on: ubuntu-latest
26-
name: Minimal Test
26+
name: Lint & Style Check
2727
steps:
2828
- uses: actions/checkout@v4
29-
- name: Echo test
30-
run: echo "CI workflow is running successfully"
29+
- uses: actions/setup-java@v4
30+
with:
31+
distribution: temurin
32+
java-version: ${{ env.JAVA_VERSION }}
33+
cache: sbt
34+
- uses: sbt/setup-sbt@v1
35+
- name: Check Style
36+
run: sbt ++${{ env.SCALA_213 }} scalastyle
3137

0 commit comments

Comments
 (0)