sync
-- re-add network client metrics
#4404
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
name: Test e2e | |
on: | |
push: | |
tags: | |
- "*" | |
branches: | |
- master | |
- dev | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
test_e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '~1.19.6' | |
check-latest: true | |
- name: Build the avalanchego binary | |
shell: bash | |
run: ./scripts/build.sh -r | |
- name: Run e2e tests | |
shell: bash | |
run: scripts/tests.e2e.sh ./build/avalanchego |