Skip to content

Commit

Permalink
Add gotestfmt
Browse files Browse the repository at this point in the history
i364 test
  • Loading branch information
Sean-Der committed Sep 8, 2023
1 parent 5082bdb commit 7618e5e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/sean-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
# SPDX-License-Identifier: MIT

name: Sean Test

jobs:
sean-test:
runs-on: ubuntu-latest
name: Sean Test
steps:
- uses: actions/checkout@v4

- name: Run test
run: |
docker run \
-u $(id -u):$(id -g) \
-e "GO111MODULE=on" \
-e "CGO_ENABLED=0" \
-e "GOPROXY=direct" \
-e "GOSUMDB=off" \
-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:1.21-alpine \
/bin/sh -c "go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest; /usr/local/go/bin/go test ${TEST_EXTRA_ARGS:-} -json -v ./... | gotestfmt"

0 comments on commit 7618e5e

Please sign in to comment.