Skip to content

setup the CA roots in the roundtripper if present #260

setup the CA roots in the roundtripper if present

setup the CA roots in the roundtripper if present #260

Workflow file for this run

name: Tests
# Run this workflow on pushes and manually
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v2
# cache/restore go mod
- uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-go@v2
with:
go-version: 1.20.2
- name: Build
run: go build
- name: Test
run: go test -v ./...