Skip to content
This repository has been archived by the owner on Oct 26, 2023. It is now read-only.

chore: update README to link to official client (#61) #125

chore: update README to link to official client (#61)

chore: update README to link to official client (#61) #125

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
fail-fast: false
matrix:
go: [ "1.17", "1.18" ]
package: [ ".", "./ioxsql" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Fmt
run: >
test -z $(gofmt -s -l ./${{ matrix.package }} | head -n 1) || ( gofmt -s -d ./${{ matrix.package }} ; exit 1 )
- name: Vet
run: >
cd ${{ matrix.package }} &&
go vet
- name: staticcheck
run: >
go install honnef.co/go/tools/cmd/[email protected] &&
cd ${{ matrix.package }} &&
staticcheck