11name : Integration Tests
22on :
33 pull_request :
4- branches : [ main, dev ]
4+ branches : [main, dev]
55 push :
6- branches : [ main, dev ]
6+ branches : [main, dev]
77 workflow_dispatch :
88 inputs :
99 test_size :
10- description : ' Test size (small/medium/large)'
10+ description : " Test size (small/medium/large)"
1111 required : true
12- default : ' small'
12+ default : " small"
1313 type : choice
1414 options :
1515 - small
2525 runs-on : ubuntu-latest
2626 if : github.event_name == 'pull_request' || (github.event_name == 'workflow_dispatch' && github.event.inputs.test_size == 'small')
2727 timeout-minutes : 10
28-
28+
2929 services :
3030 timescaledb :
3131 image : timescale/timescaledb-ha:pg17
4747 - name : Set up Go
4848 uses : actions/setup-go@v6
4949 with :
50- go-version : ' 1.26.3 '
50+ go-version : " 1.26.4 "
5151 cache : true
5252
5353 - name : Wait for PostgreSQL
8181 pool_max_conn_idle_time: 2m
8282 pool_health_check_period: 30s
8383 pool_max_conn_lifetime_jitter: 30s
84-
84+
8585 chain_id: gnoland
8686 max_height: 1000
8787 from_height: 1
@@ -103,7 +103,7 @@ jobs:
103103 runs-on : ubuntu-latest
104104 if : (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')) || (github.event_name == 'workflow_dispatch' && github.event.inputs.test_size == 'medium')
105105 timeout-minutes : 30
106-
106+
107107 services :
108108 timescaledb :
109109 image : timescale/timescaledb-ha:pg17
@@ -125,7 +125,7 @@ jobs:
125125 - name : Set up Go
126126 uses : actions/setup-go@v6
127127 with :
128- go-version : ' 1.26.3 '
128+ go-version : " 1.26.4 "
129129 cache : true
130130
131131 - name : Wait for PostgreSQL
@@ -159,7 +159,7 @@ jobs:
159159 pool_max_conn_idle_time: 2m
160160 pool_health_check_period: 30s
161161 pool_max_conn_lifetime_jitter: 30s
162-
162+
163163 chain_id: gnoland
164164 max_height: 10000
165165 from_height: 1
@@ -181,7 +181,7 @@ jobs:
181181 runs-on : ubuntu-latest
182182 if : github.event_name == 'workflow_dispatch' && github.event.inputs.test_size == 'large'
183183 timeout-minutes : 90
184-
184+
185185 services :
186186 timescaledb :
187187 image : timescale/timescaledb-ha:pg17
@@ -203,7 +203,7 @@ jobs:
203203 - name : Set up Go
204204 uses : actions/setup-go@v6
205205 with :
206- go-version : ' 1.26.3 '
206+ go-version : " 1.26.4 "
207207 cache : true
208208
209209 - name : Wait for PostgreSQL
@@ -237,7 +237,7 @@ jobs:
237237 pool_max_conn_idle_time: 2m
238238 pool_health_check_period: 30s
239239 pool_max_conn_lifetime_jitter: 30s
240-
240+
241241 chain_id: gnoland
242242 max_height: 100000
243243 from_height: 1
@@ -259,4 +259,3 @@ jobs:
259259 integration/test_results/
260260 state_dumps/
261261 retention-days : 7
262-
0 commit comments