Skip to content

Commit

Permalink
Merge pull request #3 from xebia-functional/rafaparadela-patch-1
Browse files Browse the repository at this point in the history
Create scala.yml
  • Loading branch information
rafaparadela authored Dec 11, 2023
2 parents d1e57b4 + 2daac17 commit 1660a1a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 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@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
- name: Run tests
run: sbt test

0 comments on commit 1660a1a

Please sign in to comment.