You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+13
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,19 @@ jobs:
53
53
env:
54
54
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55
55
run: GO111MODULE=off go get github.com/mattn/goveralls && $(go env GOPATH)/bin/goveralls -v -coverprofile=coverage.out -service=github
56
+
alpine_tests:
57
+
name: Alpine Linux Platform Tests
58
+
runs-on: ubuntu-latest
59
+
container:
60
+
image: golang:1.13-alpine
61
+
steps:
62
+
- uses: actions/checkout@v1
63
+
- name: Set Up
64
+
run: |
65
+
apk add --upgrade gcc g++ && \
66
+
adduser testuser -D
67
+
- name: All Tests
68
+
run: su - testuser -c 'export PATH=$PATH:/usr/local/go/bin; cd /__w/embedded-postgres/embedded-postgres && go test -v ./... && cd platform-test && go test -v ./...'
0 commit comments