mirror of
https://github.com/GoTestTools/gotestfmt-action.git
synced 2026-02-10 01:37:31 +00:00
17 lines
391 B
YAML
17 lines
391 B
YAML
on:
|
|
push:
|
|
pull_request:
|
|
name: Self-test
|
|
jobs:
|
|
self-test:
|
|
name: Self-test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install gotestfmt
|
|
uses: haveyoudebuggedit/gotestfmt-action@main
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.16
|
|
- name: Run gotestfmt
|
|
run: cd testdata && go test -v ./... | gotestfmt
|