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
Copy file name to clipboardExpand all lines: .github/workflows/README.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,26 @@
1
-
# Continuous Integration Workflows
1
+
# Continous Integration Workflows
2
2
3
-
This package implements different workflows for CI.
4
-
They are organized as follows.
3
+
This package implements different workflows for CI, based on our organisation's common workflows.
4
+
They are organised as follows.
5
5
6
6
### Documentation
7
7
8
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
-
It runs on `ubuntu-latest` and our lowest supported Python version, `Python 3.7`.
10
9
11
10
### Testing Suite
12
11
13
12
Tests are ensured in the `tests` workflow, which triggers on all pushes.
14
-
It runs on a matrix of all supported operating systems (ubuntu-18.04, ubuntu-20.04, windows-latest and macos-latest) for all supported Python versions (currently `3.7`, `3.8`, `3.9`, `3.10` and `3.11`).
13
+
It runs on a matrix of all supported operating systems for all supported Python versions.
15
14
16
15
### Test Coverage
17
16
18
17
Test coverage is calculated in the `coverage` wokflow, which triggers on pushes to `master` and any push to a `pull request`.
19
-
It runs on `ubuntu-latest` & the lowest supported Python version (`Python 3.7`), and reports the coverage results of the test suite to `CodeClimate`,
20
-
18
+
It reports the coverage results of the test suite to `CodeClimate`.
21
19
22
20
### Regular Testing
23
21
24
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.
25
-
It also runs on `Python 3.x` so that newly released Python versions that would break tests are automatically detected.
23
+
It also runs on `Python 3.x` so that newly released Python versions that would break tests are automatically included.
0 commit comments