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

Commit 0286337

Browse files
chore: Trigger overwatch
1 parent 5dc7191 commit 0286337

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,36 @@ 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+
- uses: actions/checkout@v4
93+
- name: Install Static Analysis Tools
94+
run: |
95+
pip install mypy==1.15.0
96+
pip install ruff==0.3.3
97+
- name: Install Build Dependencies
98+
run: |
99+
sudo apt-get update
100+
# Install libssl1.1 from Ubuntu 20.04 repositories
101+
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
102+
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
103+
- name: Install Overwatch CLI
104+
run: |
105+
curl -o overwatch-cli https://overwatch.codecov.dev/linux/cli
106+
chmod +x overwatch-cli
107+
- name: Print Current Working Directory
108+
run: pwd
109+
- name: List Contents of Current Working Directory
110+
run: ls -la
111+
- name: List Directories Under Root
112+
run: ls -d /*/
113+
- name: Run Overwatch CLI
114+
run: |
115+
./overwatch-cli \
116+
--auth-token ${{ secrets.SENTRY_AUTH_TOKEN }} \
117+
--organization-slug codecov \
118+
python \
119+
--python-path $(which python3) \
120+
--tool mypy

services/components.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def component_filtered_report(
3131
"""
3232
Filter a report such that the totals, etc. are only pertaining to the given component.
3333
"""
34+
x: int = "hello"
3435
flags, paths = [], []
3536
for component in components:
3637
flags.extend(component.get_matching_flags(report.flags.keys()))

0 commit comments

Comments
 (0)