chore(deps): bump github.com/go-playground/validator/v10 #519
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: CI | |
on: | |
push: | |
workflow_call: | |
inputs: | |
reviewdog_args: | |
required: true | |
type: string | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
cache-dependency-path: go.sum | |
go-version-file: go.mod | |
- name: Get dependencies | |
run: make dependencies | |
- name: Build | |
run: make build | |
reviewdog: | |
name: Reviewdog | |
needs: | |
- Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
cache-dependency-path: go.sum | |
go-version-file: go.mod | |
- name: Install lint tools | |
run: make tools | |
- name: Set Reviewdog args | |
id: reviewdog | |
run: | | |
if [ -z "${{ inputs.reviewdog_args }}" ]; then | |
echo "::set-output name=args::-reporter=github-check" | |
else | |
echo "::set-output name=args::${{ inputs.reviewdog_args }}" | |
fi | |
- name: Run reviewdog | |
run: make reviewdog | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REVIEWDOG_ARGS: ${{ steps.reviewdog.outputs.args }} | |
test: | |
name: Test | |
needs: | |
- Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
cache-dependency-path: go.sum | |
go-version-file: go.mod | |
- name: Get dependencies | |
run: make dependencies | |
- name: Test | |
run: make test | |