Skip to content

Add Gemini ENV info to README #56

Add Gemini ENV info to README

Add Gemini ENV info to README #56

Workflow file for this run

name: Python lint and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_call:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install uv
uses: astral-sh/setup-uv@v2
with:
version: "0.4.12"
- name: Install dependencies with uv
run: |
uv sync --frozen --extra dev
env:
UV_SYSTEM_PYTHON: 1
- name: Lint and format with ruff
run: |
uv run ruff format --check
uv run ruff check --output-format github
- name: Test with pytest
run: |
uv run pytest