-
Notifications
You must be signed in to change notification settings - Fork 1
148 lines (125 loc) · 3.86 KB
/
CICD.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
name: CI Testing
on:
push:
branches: [ main, devel, release ]
pull_request:
branches: [ main, devel, release ]
schedule:
- cron: "4 5 4 1/1 *" # Run monthly.
jobs:
cheap_checks:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
# Python setup
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Debug Info
run: echo ${{ github.ref }} ${{ github.event_name }} ${{ endsWith(github.ref, 'heads/release') && (github.event_name == 'push') }}
# refs/heads/main push false is the output of the main branch when tagged with a release ...
- name: View Python --version
run: python --version
# Poetry Setup
- name: Python Poetry Action
uses: abatilo/[email protected]
with:
poetry-version: '1.7.1'
- name: View poetry --version
run: poetry --version
- name: Install Stuff
run: poetry install --no-root --only check
- name: Black
run: poetry run python -m black . --check --diff
- name: ruff
run: poetry run ruff check .
- name: isort
run: poetry run isort . --check
ci:
needs: cheap_checks
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.11', '3.12' ]
poetry-version: [ '1.7.1' ]
os: [ 'ubuntu-latest' ]
runs-on: ${{ matrix.os }}
steps:
# Initial Setup
- uses: actions/checkout@v4
# Documentation setup
- name: Setup Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: View Quarto version
run: quarto --version
# Python setup
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: View Python --version
run: python --version
# Poetry Setup
- name: Python Poetry Action
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: View poetry --version
run: poetry --version
# Package Setup
- name: Install deps
run: poetry install -n -v --all-extras
# CI checks
- name: Pytest
run: poetry run python -m pytest --cov . --cov-report=xml
- name: mkdocs
run: poetry run python -m mkdocs build --strict
- uses: codecov/codecov-action@v4
with:
verbose: true # optional (default = false)
release:
# Run when there is a new push on the release branch
runs-on: 'ubuntu-latest'
needs: ci
if: endsWith(github.ref, 'heads/release') && (github.event_name == 'push')
steps:
- uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
# Documentation setup
- name: Setup Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: View Quarto version
run: quarto --version
# Python setup
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: View Python --version
run: python --version
# Poetry Setup
- name: Python Poetry Action
uses: abatilo/[email protected]
with:
poetry-version: '1.7.1'
- name: View poetry --version
run: poetry --version
# Package Setup
- name: Install deps
run: poetry install -n -v --all-extras
- name: Build package
run: |
poetry build
# Publishing Docs
- name: Deploy Docs
run: |
poetry run python -m mkdocs gh-deploy --strict --force
# Publish Package
- name: Publish Setup
env:
PYPITOKEN: ${{ secrets.PYPITOKEN }}
run: |
poetry config pypi-token.pypi ${PYPITOKEN}
- name: Publish
run: |
poetry publish --no-interaction