Skip to content

Commit

Permalink
Create scala.yml (#4)
Browse files Browse the repository at this point in the history
* Create scala.yml
  • Loading branch information
nob13 authored Sep 10, 2024
1 parent fa2a8bc commit 3bf38b7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Scala CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'sbt'
- name: Run tests
run: sbt test

0 comments on commit 3bf38b7

Please sign in to comment.