-
Notifications
You must be signed in to change notification settings - Fork 18
66 lines (60 loc) · 2.48 KB
/
api.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: API
on:
push:
schedule:
- cron: "0 0 * * *" # Runs every day at midnight
workflow_dispatch:
jobs:
generate-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v2
- name: Install jq
run: sudo apt-get install jq
- name: Generate matrix
id: set-matrix
run: |
MATRIX=$(jq -c '[.[] | .api[] | {url: .url, type: .type}]' data/networks.json)
echo "{ \"include\": $MATRIX }" > matrix.json
echo "::set-output name=matrix::$(cat matrix.json)"
test:
needs: generate-matrix
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{fromJson(needs.generate-matrix.outputs.matrix)}}
steps:
- uses: actions/checkout@v2
- name: Test Endpoint
run: |
url="${{ matrix.url }}"
type="${{ matrix.type }}"
response=""
status_check="false"
if [ "$type" = "evm" ]; then
response=$(curl -s -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' "$url")
status_check=$(echo "$response" | jq -e '.id' &> /dev/null && echo "true" || echo "false")
elif [ "$type" = "tendermint-http" ]; then
response=$(curl -s "${url}/status")
status_check=$(echo "$response" | jq -e '.jsonrpc' &> /dev/null && echo "true" || echo "false")
elif [ "$type" = "tendermint-rpc" ]; then
response=$(curl -s --header "Content-Type: application/json" --request POST --data '{"method": "status", "params": [], "id": 1}' "$url")
status_check=$(echo "$response" | jq -e '.id' &> /dev/null && echo "true" || echo "false")
elif [ "$type" = "cosmos-http" ]; then
response=$(curl -s "${url}/cosmos/base/tendermint/v1beta1/blocks/latest")
status_check=$(echo "$response" | jq -e '.block_id.hash' &> /dev/null && echo "true" || echo "false")
else
echo "⏭️ Skipping unsupported endpoint type: $type"
status_check="skip"
fi
if [ "$status_check" = "true" ]; then
echo "✅ $url - Successful"
elif [ "$status_check" = "false" ]; then
echo "❌ $url - Failed"
echo "test_failed=true" >> $GITHUB_ENV
fi
- name: Check Test Results
if: ${{ env.test_failed == 'true' }}
run: exit 1