docs: split SETUP into SETUP+USAGE, add runnable terraform example, restructure README #16
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| lint-and-test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: astral-sh/setup-uv@v8.2.0 | |
| with: | |
| enable-cache: true | |
| - run: uv sync --all-extras | |
| - name: ruff format | |
| run: uv run ruff format --check src tests | |
| - name: ruff check | |
| run: uv run ruff check src tests | |
| - name: pytest (no docker) | |
| run: uv run pytest -v -m "not docker" |