Skip to content

Bump goa.design/goa/v3 from 3.12.3 to 3.12.4 #28

Bump goa.design/goa/v3 from 3.12.3 to 3.12.4

Bump goa.design/goa/v3 from 3.12.3 to 3.12.4 #28

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