File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+
4
+ on :
5
+ push :
6
+ branches :
7
+ - develop
8
+ pull_request :
9
+ branches :
10
+ - develop
11
+
12
+
13
+ jobs :
14
+
15
+ test :
16
+ name : Test
17
+ runs-on : ubuntu-latest
18
+
19
+ steps :
20
+ - name : Checkout
21
+ uses : actions/checkout@v2
22
+
23
+ - name : Set up Go
24
+ uses : actions/setup-go@v2
25
+ with :
26
+ go-version : 1.17
27
+
28
+ - name : Test
29
+ run : go test -v ./...
Original file line number Diff line number Diff line change @@ -29,4 +29,7 @@ migratedown1:
29
29
migrateredo :
30
30
make migratedown1 && make migrateup1
31
31
32
- .PHONY : run dev postgres sqlboiler migratedown migratedown1 migrateup migrateup1 migrateredo
32
+ test :
33
+ go test -v -cover ./...
34
+
35
+ .PHONY : run dev postgres sqlboiler migratedown migratedown1 migrateup migrateup1 migrateredo test
You can’t perform that action at this time.
0 commit comments