-
Notifications
You must be signed in to change notification settings - Fork 780
33 lines (30 loc) · 1 KB
/
python-test.yaml
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
name: build
on: [push, pull_request]
jobs:
build:
# [macos-latest, macos-latest, windows-latest]
runs-on: ubuntu-latest
strategy:
# You can use PyPy versions in python-version.
# For example, pypy3.10
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python --version
- name: Install dependencies
run: |
sudo apt install graphviz
pip install --upgrade pip
pip install --upgrade setuptools
python -m pip install .[test]
python setup.py build_ext --inplace
- name: Test with pytest
run: pytest -vs tests/ --cov causalml/