-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add basic CI configuration * Use Python 3.12 as lowest bound in test matrix * Shrink test matrix No need to be wasteful. * Include pytest-cov * Fix paths and other tweaks * Report positive comparison with example stubs * Fix tool.docstub section Got scrambled by an earlier partial commit. * Add basic statistics * Use "~" in doctype of Py2StubTransformer * Use correct config file for example_pkg * Match editable and normal install for test coverage * Don't upload docstub-stubs These multiple jobs conflict and I have no real use for these right now.
- Loading branch information
Showing
5 changed files
with
88 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: CI | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
# Many color libraries just need this to be set to any value, but at least | ||
# one distinguishes color depth, where "3" -> "256-bit color". | ||
FORCE_COLOR: 3 | ||
|
||
jobs: | ||
pre-commit: | ||
name: pre-commit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
- uses: pre-commit/action@v3.0.1 | ||
with: | ||
extra_args: --hook-stage manual --all-files | ||
|
||
checks: | ||
name: Test on ${{ matrix.runs-on }} Python ${{ matrix.python-version }} | ||
runs-on: ${{ matrix.runs-on }} | ||
needs: [pre-commit] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
runs-on: [ubuntu-latest, windows-latest, macos-14] | ||
python-version: ["3.12"] | ||
|
||
include: | ||
- runs-on: ubuntu-latest | ||
python-version: "3.13" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
allow-prereleases: true | ||
|
||
- name: Install package | ||
run: python -m pip install .[test,optional] | ||
|
||
- name: Run pytest | ||
run: >- | ||
python -m pytest --showlocals -ra --cov --cov-report=term | ||
# TODO upload coverage statistics, and fail on decrease? | ||
|
||
- name: Compare example stubs | ||
run: | | ||
python -m docstub -v --config=examples/docstub.toml examples/example_pkg | ||
git diff --exit-code examples/ && echo "Stubs for example_pkg did not change" | ||
- name: Generate docstub stubs | ||
run: | | ||
python -m docstub -v src/docstub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters