-
Notifications
You must be signed in to change notification settings - Fork 27
44 lines (38 loc) · 1.02 KB
/
ci.yml
File metadata and controls
44 lines (38 loc) · 1.02 KB
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
name: CI
on:
push:
branches:
- main
- e35
pull_request:
branches:
- '**'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version: '>=1.23'
cache: false
- run: go test ./...
- run: go install github.com/pelletier/go-toml/v2/cmd/tomll@latest
- run: tomll arb-sepolia.toml
- run: tomll arb1.toml
- run: tomll bloatnet.toml
- run: tomll chiado.toml
- run: tomll gnosis.toml
- run: tomll mainnet.toml
- run: tomll sepolia.toml
- run: tomll holesky.toml
- run: tomll hoodi.toml
- run: tomll webseed/arb-sepolia.toml
- run: tomll webseed/arb1.toml
- run: tomll webseed/bloatnet.toml
- run: tomll webseed/chiado.toml
- run: tomll webseed/gnosis.toml
- run: tomll webseed/mainnet.toml
- run: tomll webseed/sepolia.toml
- run: tomll webseed/holesky.toml
- run: tomll webseed/hoodi.toml