Skip to content

Add CI linting/formatting #22

Add CI linting/formatting

Add CI linting/formatting #22

Workflow file for this run

name: lint
on: [pull_request, workflow_dispatch]
jobs:
lua:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check formatting
uses: JohnnyMorganz/stylua-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
args: --check .
go:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Go vet (vulnerabilities)
run: go vet ./...
working-directory: ./tests/go
- name: Run gci (imports)
run: |
go install github.com/daixiang0/gci@latest
gci diff --skip-generated --skip-vendor -s standard -s default .
working-directory: ./tests/go
- name: Run golines (formatting)
run: |
go install mvdan.cc/gofumpt@latest
go install github.com/segmentio/golines@latest
golines --base-formatter=gofumpt --ignore-generated --tab-len=1 --max-len=120 .
working-directory: ./tests/go