File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : Lint & Test
1+ # name: Lint & Test
22
3- on : [push]
3+ # on: [push]
44
5- jobs :
6- lint :
7- runs-on : ubuntu-latest
8- steps :
9- - uses : actions/checkout@v4
10- - name : Install uv
11- uses : astral-sh/setup-uv@v5
12- - name : " Set up Python"
13- uses : actions/setup-python@v5
14- with :
15- python-version-file : " pyproject.toml"
16- - name : Install the project
17- run : uv sync --all-extras --dev
18- - name : Lint with Ruff
19- run : uv run ruff check .
20- - name : Static type check with mypy
21- run : uv run mypy fastapi_forge
22- - name : Run tests
23- run : uv run pytest tests -s -v
5+ # jobs:
6+ # lint:
7+ # runs-on: ubuntu-latest
8+ # steps:
9+ # - uses: actions/checkout@v4
10+ # - name: Install uv
11+ # uses: astral-sh/setup-uv@v5
12+ # - name: "Set up Python"
13+ # uses: actions/setup-python@v5
14+ # with:
15+ # python-version-file: "pyproject.toml"
16+ # - name: Install the project
17+ # run: uv sync --all-extras --dev
18+ # - name: Lint with Ruff
19+ # run: uv run ruff check .
20+ # - name: Static type check with mypy
21+ # run: uv run mypy fastapi_forge
22+ # - name: Run tests
23+ # run: uv run pytest tests -s -v
You can’t perform that action at this time.
0 commit comments