Skip to content

Commit 216996c

Browse files
committed
updating gha workflows a little
1 parent 4e258fb commit 216996c

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/mypy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v5
15-
with:
16-
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
1715
- name: Set up Python
1816
uses: actions/setup-python@v6
1917
with:

.github/workflows/pylint.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v5
15-
with:
16-
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
1715
- name: Set up Python
1816
uses: actions/setup-python@v6
1917
with:

.github/workflows/pytest.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v5
15-
with:
16-
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
1715
- name: Set up Python
1816
uses: actions/setup-python@v6
1917
with:
2018
python-version: "3.13"
2119
- name: Running pytest
20+
env:
21+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
2222
run: |
23-
python --version
2423
python -m pip install --quiet --no-cache-dir --upgrade uv
2524
uv run pytest
25+
uv run coverage run --source=thin_controller -m pytest
26+
uv run coveralls

0 commit comments

Comments
 (0)