Skip to content

Commit 4866662

Browse files
committed
uncomment
1 parent 27fd8d5 commit 4866662

2 files changed

Lines changed: 22 additions & 22 deletions

File tree

.github/workflows/check.yaml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
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

.github/workflows/cli_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CLI Test
1+
name: Test CLI Generated Project
22

33
on: [push]
44

0 commit comments

Comments
 (0)