-
Notifications
You must be signed in to change notification settings - Fork 15
54 lines (51 loc) · 1.28 KB
/
python-test-conda.yml
File metadata and controls
54 lines (51 loc) · 1.28 KB
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
name: build
on:
push:
branches:
- master
tags:
- "*-[0-9]+.*"
pull_request:
branches:
- master
jobs:
build-cross-platform:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8"]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install mamba
run: |
conda install -c conda-forge mamba
- name: Install dependencies
run: |
mamba env update --file environment-test.yml --name base
- name: Install current project in dev mode
run: |
pip install -e .
- name: Install pytest
run: |
mamba install -c conda-forge pytest
- name: Test with pytest
run: |
pytest
- name: Test Convert
run: |
python tests/test_convert.py
- name: Test JVM
run: |
python tests/test_jvm.py
- name: Test Pandas
run: |
python tests/test_pandas.py