-
Notifications
You must be signed in to change notification settings - Fork 22
46 lines (41 loc) · 1.16 KB
/
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
39
40
41
42
43
44
45
46
name: CI
on:
push:
branches:
- main
- e35
pull_request:
branches:
- '**'
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
strategy:
matrix:
os: [ ubuntu-22.04 ] # list of os: https://github.com/actions/virtual-environments
runs-on: ${{ matrix.os }}
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