Skip to content

fix: update check failed show latest version as unknown #60

fix: update check failed show latest version as unknown

fix: update check failed show latest version as unknown #60

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: go build -v ./cmd/localrelay
- name: Test
run: go test -v ./...
test-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: go build -v ./cmd/localrelay
- name: Test
run: go test -v ./...
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: go build -v ./cmd/localrelay
- name: Test
run: go test -v ./...