Skip to content

Improved CI - check fmt #152

Improved CI - check fmt

Improved CI - check fmt #152

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
spark: ["3.1.3","3.2.1", "3.3.2", "3.4.3", "3.5.1"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: coursier/cache-action@v6
extraKey: ${{ matrix.spark }}

Check failure on line 18 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 18, Col: 9): Unexpected value 'extraKey' .github/workflows/ci.yml (Line: 20, Col: 9): Unexpected value 'jvm'
- uses: coursier/setup-action@v1
jvm: zulu:8
- name: Test
run: sbt -Dspark.testVersion=${{ matrix.spark }} +test
- name: Benchmark
run: sbt -Dspark.testVersion=${{ matrix.spark }} +benchmarks/Jmh/run