-
Notifications
You must be signed in to change notification settings - Fork 851
32 lines (29 loc) · 963 Bytes
/
python-test.yaml
File metadata and controls
32 lines (29 loc) · 963 Bytes
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
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.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
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 -e ".[test]"
- name: Test with pytest
run: pytest -vs tests/ --cov causalml/