Skip to content

Make curl transport optional and bound responses #19

Make curl transport optional and bound responses

Make curl transport optional and bound responses #19

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- "**"
jobs:
examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Regenerate examples
run: make -C _examples generate
- name: Git diff of regenerated files
run: make -C _examples diff
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Install native dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential pkg-config libcurl4-openssl-dev libcjson-dev
- name: Run generator tests
run: go test ./...