Fix comment to associated MR when push pipeline #51
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
paths: | |
- '**.go' | |
- '.github/workflows/test.yml' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: "go.mod" | |
- uses: aquaproj/[email protected] | |
with: | |
aqua_version: v2.27.0 | |
- uses: suzuki-shunsuke/[email protected] | |
- name: Test | |
run: go test -v -race ./... |