Skip to content

Update cli_test.yaml #7

Update cli_test.yaml

Update cli_test.yaml #7

Workflow file for this run

name: CLI Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
- name: Generate example project
run: uv run -m fastapi_forge start --use-example --no-ui --yes
- name: Run
working-directory: ./game_zone
run: make up
- name: Run tests
working-directory: ./game_zone
run: make test