[exporter/trace] remove dependency on proc_trace.html #365
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2023 Rivos Inc. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Verify exporter | |
on: push | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.20' | |
- uses: pre-commit/action@v3.0.1 | |
test: | |
runs-on: ubuntu-latest | |
needs: pre-commit | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- uses: actions/setup-go@v5 | |
- run: pip install psutil requests | |
- run: CGO_ENABLED=0 go test ./exporter |