File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 2020
2121 # If you change this value, please change it in the following files as well:
2222 # /Dockerfile
23- GO_VERSION : 1.19.2
23+ GO_VERSION : 1.20.4
2424
2525jobs :
2626 # #######################
@@ -124,3 +124,6 @@ jobs:
124124
125125 - name : run unit tests
126126 run : make unit
127+
128+ - name : run unit test with postgres
129+ run : make unit-postgres
Original file line number Diff line number Diff line change 1- FROM --platform=${BUILDPLATFORM} golang:1.19.7 -alpine as builder
1+ FROM --platform=${BUILDPLATFORM} golang:1.20.4 -alpine as builder
22
33# Copy in the local repository to build from.
44COPY . /go/src/github.com/lightningnetwork/loop
Original file line number Diff line number Diff line change 9595 @$(call print, "Running unit tests.")
9696 $(UNIT )
9797
98+ unit-postgres :
99+ @$(call print, "Running unit tests with postgres.")
100+ $(UNIT ) -tags=test_db_postgres
101+
98102# =========
99103# UTILITIES
100104# =========
You can’t perform that action at this time.
0 commit comments