8000 Merge pull request #49 from askui/fix/optional-telemetry · askui/vision-agent@de9e20d · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #49 from askui/fix/optional-telemetry #68

Merge pull request #49 from askui/fix/optional-telemetry

Merge pull request #49 from askui/fix/optional-telemetry #68

Workflow file for this run

name: Checks
on:
pull_request:
push:
branches: [main]
workflow_call:
jobs:
checks:
name: Run Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pdm-project/setup-pdm@v4
with:
cache: true
- run: pdm install
- run: pdm run format --check
- run: pdm run typecheck:all
- run: pdm run lint --output-format=github
- run: pdm run test:unit
0