This repository was archived by the owner on Jun 13, 2025. It is now read-only.
fix: Fix failure rate in public API #303
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: Upload Overwatch | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
upload-overwatch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: Install UV | |
run: pip install uv | |
- name: Install Project Dependencies | |
run: | | |
uv export --format requirements-txt > requirements.txt | |
uv pip install -r requirements.txt --system | |
- name: Install Static Analysis Tools | |
run: | | |
pip install mypy==1.15.0 | |
pip install ruff==0.9.6 | |
- name: Install Overwatch CLI | |
run: | | |
curl -o overwatch-cli https://overwatch.codecov.dev/linux/cli | |
chmod +x overwatch-cli | |
- name: Run Overwatch CLI | |
run: | | |
./overwatch-cli \ | |
--auth-token ${{ secrets.SENTRY_AUTH_TOKEN }} \ | |
--organization-slug codecov \ | |
python \ | |
--python-path $(which python3) |