Skip to content

Add handling for RFC9457 problem responses #7

Add handling for RFC9457 problem responses

Add handling for RFC9457 problem responses #7

Workflow file for this run

name: Go
on:
- push
- pull_request
jobs:
build-linux:
name: Build on Linux
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.20
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build
run: go build -v -x ./...
- name: Test
run: go test -v ./...
build-macos:
name: Build on Darwin
runs-on: macos-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.20
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build
run: go build -v -x ./...
- name: Test
run: go test -v ./...
build-windows:
name: Build on Windows
runs-on: windows-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.20
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build
run: go build -v -x ./...
- name: Test
run: go test -v ./...