forked from getsentry/sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 927 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: ci
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
report:
runs-on: ubuntu-22.04
environment: tach-demo
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
check-latest: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tach==0.16.4
- name: tach report upload
env:
GAUGE_API_KEY: ${{ secrets.GAUGE_API_KEY }}
GAUGE_API_BASE_URL: ${{ secrets.GAUGE_API_BASE_URL }}
run: |
cd src
tach upload
- name: Setup upterm session
uses: lhotari/action-upterm@v1