mirror of
https://github.com/GoTestTools/gotestfmt-action.git
synced 2026-02-08 00:37:27 +00:00
15 lines
379 B
YAML
15 lines
379 B
YAML
on: [push]
|
|
jobs:
|
|
self-test:
|
|
runs-on: ubuntu-latest
|
|
name: Self-test
|
|
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
|
|
working-directory: testdata
|
|
run: go test -v ./... | gotestfmt
|