Skip to content

Add --insecure-skip-verify flag #20

Add --insecure-skip-verify flag

Add --insecure-skip-verify flag #20

Workflow file for this run

name: "Test"
on:
# TODO: move to "main" branch
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
run:
name: "Go"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Setup Go"
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: "Build"
run: |
go build -v ./...
- name: "Test"
run: |
go test -v ./...