-
Notifications
You must be signed in to change notification settings - Fork 41
45 lines (36 loc) · 1.1 KB
/
localnet-test.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
41
42
43
44
# Copyright (c) 2024 Hemi Labs, Inc.
# Use of this source code is governed by the MIT License,
# which can be found in the LICENSE file.
# GitHub Actions workflow to run e2e network tests.
name: "Localnet Test"
on:
workflow_dispatch: # Manually triggered
concurrency:
group: "${{ github.workflow }}-${{ github.event.number || github.ref }}"
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
name: "Test"
runs-on: "ubuntu-latest"
strategy:
matrix:
go-version: [ "1.22.x" ]
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: "Setup Go ${{ matrix.go-version }}"
uses: actions/setup-go@v5
with:
go-version: "${{ matrix.go-version }}"
cache: true
check-latest: true
- name: "Download and verify dependencies"
run: make deps
- name: "run localnet"
run: docker compose -f ./e2e/docker-compose.yml up -d
- name: "get localnet stats"
working-directory: ./e2e/monitor
# XXX should this be a make command?
run: go test -v ./...