Skip to content

imp(report): Check for failed and skipped tests #5

imp(report): Check for failed and skipped tests

imp(report): Check for failed and skipped tests #5

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.22'
check-latest: true
- uses: actions/checkout@v4
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- run: make test
# Check only if there are differences in the source code
if: "env.GIT_DIFF"