-
Notifications
You must be signed in to change notification settings - Fork 22
38 lines (34 loc) · 913 Bytes
/
ci.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
name: CI
on:
push:
branches:
- main
- e35
pull_request:
branches:
- '**'
jobs:
tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- run: go install github.com/pelletier/go-toml/v2/cmd/tomll@latest
- run: tomll amoy.toml
- run: tomll bor-mainnet.toml
- run: tomll chiado.toml
- run: tomll gnosis.toml
- run: tomll goerli.toml
- run: tomll mainnet.toml
- run: tomll mumbai.toml
- run: tomll sepolia.toml
- run: tomll webseed/amoy.toml
- run: tomll webseed/bor-mainnet.toml
- run: tomll webseed/chiado.toml
- run: tomll webseed/gnosis.toml
- run: tomll webseed/goerli.toml
- run: tomll webseed/mainnet.toml
- run: tomll webseed/mumbai.toml
- run: tomll webseed/sepolia.toml