chore(deps): bump com.crealytics:spark-excel_2.12 from 0.13.7 to 3.5.0_0.20.2 #232
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- 'README.md' | |
- 'docs/**' | |
- '.github/ISSUE_TEMPLATE/**' | |
jobs: | |
test_setl: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
SCALA_VER: ["2.12", "2.11"] | |
SPARK_VER: ["3.2", "3.0", "2.4", "2.3"] | |
exclude: | |
- SCALA_VER: 2.12 | |
SPARK_VER: 2.3 | |
- SCALA_VER: 2.11 | |
SPARK_VER: 3.0 | |
- SCALA_VER: 2.11 | |
SPARK_VER: 3.2 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Before all | |
run: | | |
chmod +x ./dev/change-scala-version.sh | |
./dev/change-scala-version.sh ${{ matrix.SCALA_VER }} | |
docker-compose -f ./dev/docker-compose.yml up -d | |
- name: Run tests | |
run: | | |
set -e | |
export AWS_ACCESS_KEY_ID="fakeAccess" | |
export AWS_SECRET_ACCESS_KEY="fakeSecret" | |
export AWS_REGION="eu-west-1" | |
mvn -B -ntp clean:clean scoverage:report -P snapshot,spark_${{ matrix.SPARK_VER }} | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
flags: pr_${{ matrix.SCALA_VER }}_${{ matrix.SPARK_VER }} | |
name: codecov-pull-request | |