chore(deps): bump goa.design/goa/v3 from 3.13.1 to 3.13.2 #31
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: goa gen | |
on: | |
pull_request: | |
paths: | |
- go.mod | |
- go.sum | |
- '**.go' | |
workflow_dispatch: | |
jobs: | |
build: | |
permissions: | |
actions: write | |
checks: write | |
contents: write | |
deployments: write | |
issues: write | |
packages: write | |
pull-requests: write | |
repository-projects: write | |
security-events: write | |
statuses: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- name: goa gen | |
run: | | |
make goa_gen | |
- name: commit changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: goa gen | |
branch: ${{ github.head_ref }} | |
- name: test | |
run: | | |
cd testdata && go test ./... |