Skip to content

Commit

Permalink
Configure github action for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-py authored Jun 19, 2020
1 parent d4521cc commit 8794c02
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: test

on: [ push, pull_request ]

jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
scala: ["2.11.12", "2.12.11", "2.13.1"]

steps:
- uses: actions/checkout@v2
- uses: olafurpg/setup-scala@v7
with:
java-version: adopt@1.8
- name: Run tests
run: sbt test
env:
SCALA_VERSION: ${{ matrix.scala }}

0 comments on commit 8794c02

Please sign in to comment.