-
Notifications
You must be signed in to change notification settings - Fork 94
64 lines (57 loc) · 1.69 KB
/
test_spark.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Spark Tests
on:
push:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '**.md'
pull_request:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '**.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test_combinations:
name: Spark ${{ matrix.spark-version }} Pandas ${{ matrix.pandas-version }}
runs-on: ubuntu-latest
strategy:
matrix:
spark-version: ["3.1.1","3.4.0"]
pandas-version: ["1.5.3","2.0.1"]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: make devenv
- name: Install Spark ${{ matrix.spark-version }}
run: pip install "pyspark==${{ matrix.spark-version }}"
- name: Install Pandas ${{ matrix.pandas-version }}
run: pip install "pandas==${{ matrix.pandas-version }}"
- name: Downgrade Ibis
if: matrix.spark-version < '3.4.0'
run: pip install "ibis-framework<5"
- name: Test
run: make testspark
test_connect:
name: Spark Connect
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: make devenv
- name: Setup Spark
run: make sparkconnect
- name: Test
run: make testsparkconnect