Skip to content

Support Tab Completion #361

Support Tab Completion

Support Tab Completion #361

Workflow file for this run

name: Runs Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ stable, 1.18.x ] # min and max versions should be sufficient
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Configure git identity
run: |
git config user.name "CI"
git config user.email "ci@localhost"
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -v -vet=all -tags CI -race ./...
env:
GOPATH: /home/runner/go