SDK regeneration #437
This file contains hidden or 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: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| compile: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Set up go | |
| uses: actions/setup-go@v5 | |
| - name: Compile | |
| run: go build ./... | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Set up go | |
| uses: actions/setup-go@v5 | |
| # The generator emits wire tests that expect a mock server on :8080. No | |
| # mock is generated into this repository and CI starts none, so they can | |
| # only fail. Skipping them by name keeps every other generated test -- | |
| # including the setter and serialization suites -- running. | |
| - name: Test | |
| run: go test ./... -skip 'WithWireMock' |