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

Commit 87ce669

Browse files
committed
Integrate overwatch to CI
1 parent e6b347d commit 87ce669

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Upload Overwatch
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- synchronize
8+
9+
jobs:
10+
upload-overwatch:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Install Static Analysis Tools
15+
run: |
16+
pip install mypy==1.15.0
17+
pip install ruff==0.3.3
18+
- name: Install Build Dependencies
19+
run: |
20+
sudo apt-get update
21+
# Install libssl1.1 from Ubuntu 20.04 repositories
22+
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
23+
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
24+
- name: Install Overwatch CLI
25+
run: |
26+
curl -o overwatch-cli https://overwatch.codecov.dev/linux/cli
27+
chmod +x overwatch-cli
28+
- name: Run Overwatch CLI
29+
run: |
30+
./overwatch-cli \
31+
--auth-token ${{ secrets.SENTRY_AUTH_TOKEN }} \
32+
--organization-slug codecov \
33+
python \
34+
--python-path $(which python3)

0 commit comments

Comments
 (0)