--- name: ci on: push: branches: - main jobs: ruff: runs-on: docker continue-on-error: true container: image: ghcr.io/astral-sh/uv:alpine steps: - run: apk add --no-cache nodejs npm git - uses: actions/checkout@v4 with: submodules: true - run: uv python install # Gets Python version from pyproject.toml - run: uv sync --dev - run: uv run ruff check - run: uv run ruff format ty: runs-on: docker continue-on-error: true container: image: ghcr.io/astral-sh/uv:alpine steps: - run: apk add --no-cache nodejs npm git - uses: actions/checkout@v4 with: submodules: true - run: uv python install # Gets Python version from pyproject.toml - run: uv sync --dev - run: uv run ty check - run: uv run ruff format - run: uv run pytest test env: ENVIRONMENT: testing tests: runs-on: docker continue-on-error: true container: image: ghcr.io/astral-sh/uv:alpine steps: - run: apk add --no-cache nodejs npm git - uses: actions/checkout@v4 with: submodules: true - run: uv python install # Gets Python version from pyproject.toml - run: uv sync --dev - run: uv run pytest test env: ENVIRONMENT: testing