Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

docs: add deprecation notice #170

docs: add deprecation notice

docs: add deprecation notice #170

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
name: Build
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make build
test:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
name: Test
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: make test