Skip to content

failure v2

failure v2 #1

Workflow file for this run

name: test
on:
push:
branches: [ main ]
paths:
- 'go.mod'
- 'oss/**'
- '.github/workflows/test-oss.yml'
pull_request:
types: [ opened, synchronize, reopened ]
paths:
- 'go.mod'
- 'oss/**'
- '.github/workflows/test-oss.yml'
defaults:
run:
working-directory: ./oss
jobs:
test-oss:
name: test-oss
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- uses: reviewdog/action-golangci-lint@v2
with:
workdir: ./oss
reporter: github-pr-review
filter_mode: diff_context
fail_on_error: true
golangci_lint_flags: "--config=../.golangci.yaml --timeout=5m"
cache: false
- run: make test