Skip to content

chore(deps): bump goa.design/goa/v3 from 3.13.1 to 3.13.2 #31

chore(deps): bump goa.design/goa/v3 from 3.13.1 to 3.13.2

chore(deps): bump goa.design/goa/v3 from 3.13.1 to 3.13.2 #31

Workflow file for this run

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 ./...