Skip to content

SDK regeneration

SDK regeneration #437

Workflow file for this run

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'