Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
AskAlexSharov committed Dec 23, 2023
1 parent 30a0f56 commit f0c91f3
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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
1 change: 1 addition & 0 deletions sepolia.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,5 @@
'v1-004600-004700-bodies.seg' = 'd7744bba4e6db9e321aa30b1896877a15e771891'
'v1-004600-004700-headers.seg' = 'ea54ea2744647bfa303c5923a2fcd4f55ad0d44f'
'v1-004600-004700-transactions.seg' = '6b2bec9f25e99987be9efccbaf89f5467d216b6c'
'v1-004600-004700-transactions.seg' = '6b2bec9f25e99987be9efccbaf89f5467d216b6c'

0 comments on commit f0c91f3

Please sign in to comment.