-
Notifications
You must be signed in to change notification settings - Fork 78
44 lines (42 loc) · 1.04 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
paths:
- "cobol-parser/**"
- "cobol-converters/**"
- "spark-cobol/**"
- "project/**"
- "build.sbt"
jobs:
build-sbt:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
scala: [ 2.11.12, 2.12.19, 2.13.14 ]
spark: [ 2.4.8, 3.4.3, 3.5.1 ]
exclude:
- scala: 2.11.12
spark: 3.4.3
- scala: 2.11.12
spark: 3.5.1
- scala: 2.12.19
spark: 2.4.8
- scala: 2.13.14
spark: 2.4.8
name: Spark ${{matrix.spark}} on Scala ${{matrix.scala}}
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: coursier/cache-action@v5
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8
cache: sbt
- name: Build and run tests
run: sbt ++${{matrix.scala}} test -DSPARK_VERSION=${{matrix.spark}}