Skip to content

Commit

Permalink
ci: add mypy action
Browse files Browse the repository at this point in the history
  • Loading branch information
lu-pl committed Feb 5, 2025
1 parent ab2660b commit a7a792d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: mypy

on: [push, pull_request]

jobs:
docs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.5.26"

enable-cache: true
cache-dependency-glob: "uv.lock"

- name: Install dependencies
run: uv sync --dev

- name: Run mypy
run: uv run mypy rdfproxy/

0 comments on commit a7a792d

Please sign in to comment.