Skip to content

Sentry core should not depend on plugins #18

Sentry core should not depend on plugins

Sentry core should not depend on plugins #18

Workflow file for this run

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