File tree Expand file tree Collapse file tree 4 files changed +26
-9
lines changed Expand file tree Collapse file tree 4 files changed +26
-9
lines changed Original file line number Diff line number Diff line change 7
7
push :
8
8
branches :
9
9
- main
10
+ - production
10
11
jobs :
11
12
golangci :
12
13
name : Run golangci-lint
Original file line number Diff line number Diff line change 1
- name : docker-compose-actions-workflow
2
- on :
1
+ name : Tests
2
+ on :
3
+ pull_request :
3
4
push :
4
- branches-ignore :
5
+ branches :
5
6
- main
7
+ - production
8
+
6
9
jobs :
7
- test :
10
+ test-unit :
8
11
runs-on : ubuntu-latest
9
12
steps :
10
- - uses : actions/checkout@v2
11
- - name : Build the stack
12
- run : docker-compose up -d
13
+ - uses : actions/setup-go@v4
14
+ with :
15
+ go-version : ' 1.19'
16
+ check-latest : true
17
+ - uses : actions/checkout@v3
18
+ - uses : technote-space/get-diff-action@v6.1.2
19
+ with :
20
+ PATTERNS : |
21
+ **/**.sol
22
+ **/**.go
23
+ go.mod
24
+ go.sum
13
25
- name : Test
14
- run : docker run --network container:nginx appropriate/curl -s --retry 10 --retry-connrefused http://localhost:80/HealthCheck
26
+ run : |
27
+ make test
28
+ if : env.GIT_DIFF
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ Ref: https://keepachangelog.com/en/1.0.0/
36
36
37
37
## Unreleased
38
38
39
+ - (ci) [ fse-478] Updating github actions and versions
40
+
39
41
### Improvements
40
42
41
43
- (ci) [ #107 ] ( https://github.com/evmos/backend/pull/107 ) Add golangci linter.
Original file line number Diff line number Diff line change 1
1
module github.com/tharsis/dashboard-backend
2
2
3
- go 1.18
3
+ go 1.19
4
4
5
5
require (
6
6
cosmossdk.io/math v1.0.0
You can’t perform that action at this time.
0 commit comments