Adding upstream version 6.0.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
68a5279c14
commit
77c49e5821
14 changed files with 1049 additions and 0 deletions
39
.github/workflows/ci.yml
vendored
Normal file
39
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
checks:
|
||||
name: Run checks
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python:
|
||||
- "3.10"
|
||||
- "3.11"
|
||||
- "3.12"
|
||||
- "3.13"
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python3 -m pip install coverage poetry
|
||||
poetry install
|
||||
|
||||
- name: Run checks
|
||||
run: poetry run poe check
|
||||
|
||||
- name: Create XML coverage report
|
||||
run: poetry run coverage xml
|
||||
|
||||
- name: Upload test coverage report
|
||||
uses: codecov/codecov-action@v4.6.0
|
Loading…
Add table
Add a link
Reference in a new issue