name steps

This commit is contained in:
Mark Canlas
2024-07-07 20:48:48 -04:00
parent 014cc6af57
commit e4935bc0ac

View File

@@ -17,10 +17,12 @@ jobs:
java-version: '22' java-version: '22'
cache: sbt cache: sbt
- run: sbt 'scalafixAll --check' scalafmtSbtCheck scalafmtCheck - name: Check linting and formatting
run: sbt 'scalafixAll --check' scalafmtSbtCheck scalafmtCheck
env: env:
GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }} GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }}
- run: sbt +test - name: Unit test
run: sbt +test
env: env:
GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }} GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }}