all repos

gopher.nvim @ bc235b7cd34ea53d9b12be6a53cddb54d4a1f3d7

Minimalistic plugin for Go development
1 files changed, 23 insertions(+), 0 deletions(-)
chore: add CI
Author: Smirnov Olexander ss2316544@gmail.com
Committed at: 2022-06-17 21:58:03 +0300
Parent: 4a113e6
A .github/workflows/ci.yml

@@ -0,0 +1,23 @@

+name: Format and lint +on: [push, pull_request] + +jobs: + format: + name: stylua + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: JohnnyMorganz/stylua-action@1.0.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + args: --check . + + lint: + name: selene + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: NTBBloodbath/selene-action@v1.0.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + args: --display-style=quiet .