-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (78 loc) · 2.14 KB
/
ci.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
name: "Tests"
runs-on: ${{ matrix.os }}
if: ${{ !github.event.pull_request.head.repo.fork }}
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest"]
pytest_opts: ["--workers 4 --tests-per-worker 1"]
include:
- os: "ubuntu-latest"
python: "3.12"
- os: "macos-latest"
python: "3.12"
pytest_opts: "--workers 4 --tests-per-worker 1 -k statsframe/tests"
# - os: "windows-latest"
# python: "3.11"
# pytest_opts: "-k statsframe/tests"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --with=test,dev
- name: Run tests
run: poetry run pytest tests/
build-docs:
name: "Build Docs"
runs-on: ubuntu-latest
needs: ["tests"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --with=test,dev
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Build docs
run: |
make docs-build
- name: Save docs artifact
uses: actions/upload-artifact@v4
with:
name: docs-html
path: docs/_site
publish-docs:
name: "Publish Docs"
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
needs: ["build-docs", "tests"]
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/download-artifact@v4
with:
name: docs-html
path: docs/_site
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_site