[Bug fix] Issue 301: Metadata() is not reflected when setting the Default() in goa design. #890
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: | |
- "ubuntu-latest" | |
- "windows-latest" | |
- "macos-latest" | |
go: | |
- "1" | |
- "1.22" | |
- "1.21" | |
- "1.20" | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: src/github.com/shogo82148/goa-v1 | |
persist-credentials: false | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- run: | | |
go version | |
echo "GO111MODULE=on" >> "$GITHUB_ENV" | |
echo "GOPATH=${{ github.workspace }}" >> "$GITHUB_ENV" | |
echo "${{ github.workspace }}/bin" >> "$GITHUB_PATH" | |
shell: bash | |
- run: make depend | |
working-directory: src/github.com/shogo82148/goa-v1 | |
- run: make test | |
working-directory: src/github.com/shogo82148/goa-v1 |