-
Notifications
You must be signed in to change notification settings - Fork 3
72 lines (68 loc) · 1.79 KB
/
Copy pathtest.yml
File metadata and controls
72 lines (68 loc) · 1.79 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: tests
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 0 * * 1' # run every Monday
workflow_call:
workflow_dispatch:
env:
PYTEST_ADDOPTS: "--color=yes"
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-26-intel, windows-latest]
python-version: ["3.13"]
defaults:
run:
shell: bash -l {0}
steps:
- name: Initialisation
uses: actions/checkout@v4
- name: Set up conda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
auto-update-conda: true
activate-environment: conda-environment
environment-file: .github/environment.yml
- name: Install package
run: python -m pip install .[dev]
- name: Unit tests
run: invoke test.unittest
if: matrix.os != 'ubuntu-latest'
- name: Unit tests with coverage
run: invoke test.coverage
if: matrix.os == 'ubuntu-latest'
- name: Documentation tests
run: invoke test.docs
- name: Jupyter notebook tests
run: invoke test.ipynb
- name: Upload coverage to Codecov.io
uses: codecov/codecov-action@v1
if: matrix.os == 'ubuntu-latest'
build:
needs: tests
name: Build wheel and sdist
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install pypa/build
run: python -m pip install --user build
- name: Build wheel and source tarball
run: python -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/