-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
81 additions
and
0 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 @@ | ||
github: 15r10nk |
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,80 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
mypy: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{matrix.python-version}} | ||
architecture: x64 | ||
- run: pip install nox==2023.4.22 | ||
- run: pip install poetry nox-poetry | ||
- run: nox --session mypy-${{matrix.python-version}} | ||
|
||
test: | ||
runs-on: ${{matrix.os}} | ||
strategy: | ||
matrix: | ||
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | ||
os: [ubuntu-latest, windows-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{matrix.python-version}} | ||
architecture: x64 | ||
- run: pip install hatch | ||
- run: pip install poetry nox-poetry | ||
- run: hatch +python=${{matrix.python-version}} test-cov | ||
|
||
- name: Combine data | ||
env: | ||
TOP: ${{github.workspace}} | ||
run: | | ||
poetry install | ||
poetry run coverage combine | ||
mv .coverage .coverage.${{ matrix.python-version }}.${{matrix.os}} | ||
- name: Upload coverage data | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: coverage | ||
path: .coverage.* | ||
|
||
combine_coverage: | ||
name: combine coverage and check for 100% | ||
needs: test | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
architecture: x64 | ||
|
||
- name: Download coverage data | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: coverage | ||
|
||
- name: Combine data | ||
env: | ||
TOP: ${{github.workspace}} | ||
run: | | ||
# i have problems to combine windows coverage files with linux coverage files | ||
rm .coverage.*.windows-latest | ||
pip install coverage | ||
coverage combine | ||
coverage | ||
coverage report --fail-under 100 |