Skip to content

Commit

Permalink
chore: fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemcguire committed Jan 16, 2025
1 parent 62a3905 commit fbadfd7
Show file tree
Hide file tree
Showing 6 changed files with 1,203 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-python-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
uses: astral-sh/setup-uv@v2
with:
version: ${{ inputs.uv-version }}
enable-cache: 'true'
enable-cache: "true"
cache-suffix: ${{ matrix.python-version }}

- name: Install Python dependencies
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,12 @@ jobs:
- name: Check typing
run: uv run mypy


- name: Upload coverage reports to Codecov with GitHub Action on Python 3.11
uses: codecov/codecov-action@v4
if: ${{ matrix.python-version == '3.11' }}
- name: Upload coverage reports to Codecov with GitHub Action on Python 3.13
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: lukemcguire/flask-test
if: ${{ matrix.python-version == '3.13' }}

check-docs:
runs-on: ubuntu-latest
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/on-release-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
branches: [main]

jobs:

deploy-docs:
runs-on: ubuntu-latest
steps:
Expand All @@ -18,4 +17,3 @@ jobs:

- name: Deploy documentation
run: uv run mkdocs gh-deploy --force

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ To enable the code coverage reports, see [here](https://fpgmaas.github.io/cookie

## Releasing a new version



---

Repository initiated with [fpgmaas/cookiecutter-uv](https://github.com/fpgmaas/cookiecutter-uv).
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,3 @@ skip_empty = true
[tool.coverage.run]
branch = true
source = ["flask_test"]

Loading

0 comments on commit fbadfd7

Please sign in to comment.