Skip to content

Fix offset in completion printing (#60) #184

Fix offset in completion printing (#60)

Fix offset in completion printing (#60) #184

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
unix:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20.4
- name: Build
run: go build -v ./...
- name: Run coverage
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
# windows:
# runs-on: windows-latest
#
# steps:
# - uses: actions/checkout@v3
#
# - name: Set up Go
# uses: actions/setup-go@v3
# with:
# go-version: 1.20.4
#
# - name: Build
# run: go build -v ./...
# shell: powershell
#
# - name: Run coverage
# run: go test -v ./...
# shell: powershell