Skip to content

version refresh

version refresh #37

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: lint
uses: golangci/[email protected]
with:
args: ./...
- name: Build API
run: go build -v ./ ./stdbus ./rid
- name: Build Clients
run: go build -v ./client/native ./client/arimocks
- name: Build Extensions
run: go build -v ./ext/...
- name: Test
run: go test -v ./...