Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
fix typing
  • Loading branch information
zzstoatzz committed Dec 21, 2024
1 parent 3f7b4e2 commit 0bd8fb0
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,26 @@ permissions:
contents: read

jobs:

static_analysis:
timeout-minutes: 1

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: UV Cache
# Manually cache the uv cache directory
# until setup-python supports it:
# https://github.com/actions/setup-python/issues/822
uses: actions/cache@v4
id: cache-uv
with:
path: ~/.cache/uv
key: uvcache-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Run pre-commit
uses: pre-commit/action@v3.0.0
uses: pre-commit/action@v3.0.0

0 comments on commit 0bd8fb0

Please sign in to comment.