Skip to content

Commit 2a091b2

Browse files
committed
Add GitHub workflow
1 parent bc0b899 commit 2a091b2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
strategy:
7+
fail-fast: false
8+
matrix:
9+
scala: ["2.12.12"]
10+
spark: ["3.0.1"]
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: olafurpg/setup-scala@v10
15+
- name: Test
16+
run: sbt -Dspark.testVersion=${{ matrix.spark }} ++${{ matrix.scala }} test

0 commit comments

Comments
 (0)