File tree Expand file tree Collapse file tree 6 files changed +7
-12
lines changed Expand file tree Collapse file tree 6 files changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ on: [push]
4
4
jobs :
5
5
fmt :
6
6
runs-on : ubuntu-latest
7
- container : nhooyr/websocket-ci@sha256:ea94e078d2d589d654a2c759d952bf4199c754d80dadb20696dc3902359027cb
7
+ container : nhooyr/websocket-ci@sha256:046cd02e79dcbf81dc06eb6fd333fa8643f2503f437ddd46a4c1af9132078a2c
8
8
steps :
9
9
- uses : actions/checkout@v1
10
10
- run : make fmt
11
11
lint :
12
12
runs-on : ubuntu-latest
13
- container : nhooyr/websocket-ci@sha256:ea94e078d2d589d654a2c759d952bf4199c754d80dadb20696dc3902359027cb
13
+ container : nhooyr/websocket-ci@sha256:046cd02e79dcbf81dc06eb6fd333fa8643f2503f437ddd46a4c1af9132078a2c
14
14
steps :
15
15
- uses : actions/checkout@v1
16
16
- run : make lint
17
17
test :
18
18
runs-on : ubuntu-latest
19
- container : nhooyr/websocket-ci@sha256:ea94e078d2d589d654a2c759d952bf4199c754d80dadb20696dc3902359027cb
19
+ container : nhooyr/websocket-ci@sha256:046cd02e79dcbf81dc06eb6fd333fa8643f2503f437ddd46a4c1af9132078a2c
20
20
steps :
21
21
- uses : actions/checkout@v1
22
22
- run : make test
Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ include ci/lint.mk
13
13
include ci/test.mk
14
14
15
15
ci-image :
16
- docker build -f ./ci/image/ Dockerfile -t nhooyr/websocket-ci .
16
+ docker build -f ./ci/Dockerfile -t nhooyr/websocket-ci .
17
17
docker push nhooyr/websocket-ci
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ GitHub Release] ( https://img.shields.io/github/v/release/nhooyr/websocket?color=6b9ded&sort=semver )] ( https://github.com/nhooyr/websocket/releases )
4
4
[ ![ GoDoc] ( https://godoc.org/nhooyr.io/websocket?status.svg )] ( https://godoc.org/nhooyr.io/websocket )
5
- [ ![ Codecov ] ( https://img.shields.io/coveralls/github/nhooyr/websocket?color=65d6a4 )] ( https://coveralls.io/github/nhooyr/websocket )
5
+ [ ![ Coveralls ] ( https://img.shields.io/coveralls/github/nhooyr/websocket?color=65d6a4 )] ( https://coveralls.io/github/nhooyr/websocket )
6
6
[ ![ Actions Status] ( https://github.com/nhooyr/websocket/workflows/ci/badge.svg )] ( https://github.com/nhooyr/websocket/actions )
7
7
8
8
websocket is a minimal and idiomatic WebSocket library for Go.
Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ ENV PAGER=cat
11
11
ENV CI=true
12
12
ENV MAKEFLAGS="--jobs=8 --output-sync=target"
13
13
14
- COPY ./ci/image/gitignore /root/.config/git/ignore
15
-
16
14
RUN npm install -g prettier
17
15
RUN go get golang.org/x/tools/cmd/stringer
18
16
RUN go get golang.org/x/tools/cmd/goimports
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ ci/out/coverage.html: gotest
8
8
9
9
coveralls : gotest
10
10
echo " --- coveralls"
11
+ export GIT_BRANCH=$$ {GITHUB_REF}
12
+ export BUILD_NUMBER=$$ {GITHUB_ACTION}
11
13
goveralls -coverprofile=ci/out/coverage.prof -service=github-actions
12
14
13
15
gotest :
You can’t perform that action at this time.
0 commit comments