Update module github.com/google/pprof to v0.0.0-20240507183855-6f11f98ebb1c #1193
Workflow file for this run
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
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, reopened, synchronize] | |
workflow_call: {} | |
name: Test | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Add mask for secrets | |
run: | | |
echo "::add-mask::${{ secrets.NPCAP_URL }}" | |
- uses: actions/checkout@v4 | |
- name: Install Windows tools | |
run: | | |
.\.github\InstallShims.ps1 | |
.\.github\InstallDrivers.ps1 | |
if: matrix.os == 'windows-latest' | |
env: | |
NPCAP_URL: ${{ secrets.NPCAP_URL }} | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
cache: true | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
- name: Install required Python packages | |
run: pip install -r requirements.txt | |
- name: Build local binaries | |
run: python ./build.py --architectures local --platforms local | |
- name: Run tests | |
run: | | |
sudo -H -E -- "$(which pytest)" --reruns 3 --reruns-delay 1 -p no:cacheprovider ./tests |