You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package implements different workflows for CI, based on our organisation's common workflows.
4
+
They are organised as follows.
5
+
6
+
### Documentation
7
+
8
+
The `documentation` workflow triggers on any push to master, builds the documentation and pushes it to the `gh-pages` branch (if the build is successful).
9
+
10
+
### Testing Suite
11
+
12
+
Tests are ensured in the `tests` workflow, which triggers on all pushes.
13
+
It runs on a matrix of all supported operating systems for all supported Python versions.
14
+
15
+
### Test Coverage
16
+
17
+
Test coverage is calculated in the `coverage` wokflow, which triggers on pushes to `master` and any push to a `pull request`.
18
+
It reports the coverage results of the test suite to `CodeClimate`.
19
+
20
+
### Regular Testing
21
+
22
+
A `cron` workflow triggers every Monday at 3am (UTC time) and runs the full testing suite, on all available operating systems and supported Python versions.
23
+
It also runs on `Python 3.x` so that newly released Python versions that would break tests are automatically included.
24
+
25
+
### Publishing
26
+
27
+
Publishing to `PyPI` is done through the `publish` workflow, which triggers anytime a `release` is made of the GitHub repository.
28
+
It builds a `wheel`, checks it, and pushes to `PyPI` if checks are successful.
0 commit comments