Skip to content

Commit

Permalink
Format indent of test scripts
Browse files Browse the repository at this point in the history
Add indent to continued lines.
  • Loading branch information
at-wat committed Jul 21, 2021
1 parent b6b3e3b commit bd40912
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions ci/.github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
if [ -f .github/.ci.conf ]; then . .github/.ci.conf; fi
go-acc -o cover.out ./... -- \
${TEST_BENCH_OPTION} \
-v -race
${TEST_BENCH_OPTION} \
-v -race
- name: Run TEST_HOOK
run: |
Expand Down Expand Up @@ -92,17 +92,17 @@ jobs:
run: |
mkdir -p $HOME/go/pkg/mod $HOME/.cache
docker run \
-u $(id -u):$(id -g) \
-e "GO111MODULE=on" \
-e "CGO_ENABLED=0" \
-v $GITHUB_WORKSPACE:/go/src/github.com/pion/$(basename $GITHUB_WORKSPACE) \
-v $HOME/go/pkg/mod:/go/pkg/mod \
-v $HOME/.cache:/.cache \
-w /go/src/github.com/pion/$(basename $GITHUB_WORKSPACE) \
i386/golang:${{matrix.go}}-alpine \
/usr/local/go/bin/go test \
${TEST_EXTRA_ARGS:-} \
-v ./...
-u $(id -u):$(id -g) \
-e "GO111MODULE=on" \
-e "CGO_ENABLED=0" \
-v $GITHUB_WORKSPACE:/go/src/github.com/pion/$(basename $GITHUB_WORKSPACE) \
-v $HOME/go/pkg/mod:/go/pkg/mod \
-v $HOME/.cache:/.cache \
-w /go/src/github.com/pion/$(basename $GITHUB_WORKSPACE) \
i386/golang:${{matrix.go}}-alpine \
/usr/local/go/bin/go test \
${TEST_EXTRA_ARGS:-} \
-v ./...
test-wasm:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -147,9 +147,9 @@ jobs:
run: |
if [ -f .github/.ci.conf ]; then . .github/.ci.conf; fi
GOOS=js GOARCH=wasm $GOPATH/bin/go test \
-coverprofile=cover.out -covermode=atomic \
-exec="${GO_JS_WASM_EXEC}" \
-v ./...
-coverprofile=cover.out -covermode=atomic \
-exec="${GO_JS_WASM_EXEC}" \
-v ./...
- uses: codecov/codecov-action@v1
with:
Expand Down

0 comments on commit bd40912

Please sign in to comment.