Skip to content

feat: Added levels of connectivity to connect command #708

feat: Added levels of connectivity to connect command

feat: Added levels of connectivity to connect command #708

Workflow file for this run

name: Go
on:
pull_request:
workflow_dispatch:
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.18", "1.19", "1.20", "1.21", "1.22"]
steps:
- name: Updating ...
run: sudo apt-get -qq update
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Go build (source)
run: go build ./...
- name: Go build (tests)
run: go test ./...
- name: Go vet
run: go vet ./...