Skip to content

Start darkman.nvim asynchronously #6

Start darkman.nvim asynchronously

Start darkman.nvim asynchronously #6

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
types: [opened, reopened, synchronize]
jobs:
build-test:
name: Build, test, and format
strategy:
matrix:
go-version: [1.19.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: setup go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Format
if: matrix.platform == 'ubuntu-latest'
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi