File tree Expand file tree Collapse file tree 3 files changed +83
-0
lines changed Expand file tree Collapse file tree 3 files changed +83
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : python-spark (macos)
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : macos-latest
12
+ strategy :
13
+ matrix :
14
+ os : [macOS]
15
+ python-version : ['3.11', '3.12']
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+ - name : Set up Python ${{ matrix.python-version }}
19
+ uses : actions/setup-python@v5
20
+ with :
21
+ python-version : ${{ matrix.python-version }}
22
+ - name : Install dependencies
23
+ run : |
24
+ python -m pip install --upgrade pip
25
+ pip install -e .[dev]
26
+ - name : Test python-spark
27
+ run : |
28
+ make check
Original file line number Diff line number Diff line change
1
+ name : python-spark (ubuntu)
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+ strategy :
13
+ matrix :
14
+ python-version : ['3.11', '3.12']
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ - name : Set up Python ${{ matrix.python-version }}
18
+ uses : actions/setup-python@v5
19
+ with :
20
+ python-version : ${{ matrix.python-version }}
21
+ - name : Install dependencies
22
+ run : |
23
+ pip install -e .[dev]
24
+ - name : Test python-spark
25
+ run : |
26
+ make check
Original file line number Diff line number Diff line change
1
+ name : python-spark (windows)
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : windows-latest
12
+ strategy :
13
+ matrix :
14
+ os : [windows]
15
+ python-version : ['3.11', '3.12']
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+ - name : Set up Python ${{ matrix.python-version }}
19
+ uses : actions/setup-python@v5
20
+ with :
21
+ python-version : ${{ matrix.python-version }}
22
+ - name : Install dependencies
23
+ run : |
24
+ python -m pip install --upgrade pip
25
+ pip install -e .[dev]
26
+ - name : Test python-spark
27
+ run : |
28
+ # Until workflows CI problems are fixed
29
+ make check
You can’t perform that action at this time.
0 commit comments