Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit d62177a

Browse files
committed
tester
1 parent 5df99ba commit d62177a

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/workflows/ci.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,40 @@ jobs:
8585
push_rolling: true
8686
repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-api' }}
8787
cache_file: "uv.lock"
88+
89+
upload-overwatch:
90+
runs-on: ubuntu-latest
91+
steps:
92+
- name: Checkout
93+
uses: actions/checkout@v4
94+
95+
- name: Install Requirements
96+
run: |
97+
pip install -r requirements.txt
98+
99+
- name: Install Overwatch CLI
100+
run: |
101+
curl -o cli https://overwatch.codecov.io/cli
102+
chmod +x cli
103+
104+
- name: Run Overwatch CLI
105+
run: cli --auth-token ${{ secrets.SENTRY_AUTH_TOKEN }} python
106+
107+
upload-overwatch:
108+
runs-on: ubuntu-latest
109+
steps:
110+
- name: Install Static Analysis Tools
111+
run: |
112+
pip install mypy==1.15.0
113+
pip install ruff==0.3.3
114+
- name: Install Overwatch CLI
115+
run: |
116+
curl -o overwatch-cli https://overwatch.codecov.dev/linux/cli
117+
chmod +x overwatch-cli
118+
- name: Run Overwatch CLI
119+
run: |
120+
./overwatch-cli \
121+
--auth-token ${{ secrets.SENTRY_AUTH_TOKEN }} \
122+
--organization-slug codecov \
123+
python \
124+
--python-path $(which python3)

0 commit comments

Comments
 (0)