-
Notifications
You must be signed in to change notification settings - Fork 109
60 lines (49 loc) · 1.46 KB
/
test.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
name: Testing
on:
push:
branches: [master]
paths-ignore: [docs/**]
pull_request:
branches: [master]
paths-ignore: [docs/**]
workflow_dispatch:
# make this workflow reusable by release.yml
workflow_call:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-14]
# not testing on 3.9 because tests use glob("*", root_dir=TEST_FILES)
# and root_dir only added in 3.10
python-version: ["3.10", "3.12"]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Install uv
run: pip install uv
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
activate-environment: qchem
- name: Install OpenBabel
run: conda install -c conda-forge openbabel
- name: Install dependencies
run: uv pip install -e '.[dev]' --system
- name: pytest
env:
PMG_MAPI_KEY: ${{ secrets.PMG_MAPI_KEY }}
MPLBACKEND: Agg
run: pytest --cov=custodian --color=yes tests
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}