-
-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (24 loc) · 619 Bytes
/
verify.yml
File metadata and controls
34 lines (24 loc) · 619 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Verify
on:
workflow_call:
jobs:
cli:
name: CLI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
name: Checkout Code
- uses: actions/setup-python@v6
name: Setup Python
with:
python-version: "3.10"
- run: python -m pip install --upgrade pip
name: Upgrade Pip
- run: python -m pip install -e '.[dev]'
name: Install Dependencies
- run: ruff format --check .
name: Check Code Formatting
- run: ruff check .
name: Check Code Linting
- run: mypy
name: Check Type Hints