From c5e945ed984aa2579d0e339d4b3f768634e23e84 Mon Sep 17 00:00:00 2001 From: ehsanbf59 <101456658+ehsanbf59@users.noreply.github.com> Date: Sat, 12 Mar 2022 15:04:25 +0330 Subject: [PATCH] Create scala.yml --- .github/workflows/scala.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/scala.yml diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml new file mode 100644 index 00000000..b52d0973 --- /dev/null +++ b/.github/workflows/scala.yml @@ -0,0 +1,22 @@ +name: Scala CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'temurin' + - name: Run tests + run: sbt test