Skip to content

Commit

Permalink
Create scala.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sobakavosne authored Oct 13, 2024
1 parent e7eb493 commit 50a7795
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
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: Cache sbt dependencies
uses: actions/cache@v3
with:
path: |
~/.ivy2/cache
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
restore-keys: |
${{ runner.os }}-sbt-
- name: Check for Scala format violations
run: sbt scalafmtCheckAll

- name: Build and test with sbt
run: sbt clean compile test

0 comments on commit 50a7795

Please sign in to comment.