Skip to content

Commit

Permalink
Create scala.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
schoeberl authored Aug 14, 2024
1 parent b65ebff commit 2b7c7eb
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# 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: [ "main" ]
pull_request:
branches: [ "main" ]

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 compile
run: make init
- name: Run tests
run: make test

0 comments on commit 2b7c7eb

Please sign in to comment.