Skip to content

Add CI linting/formatting #28

Add CI linting/formatting

Add CI linting/formatting #28

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
# FIXME: figure out why this is crashing with: Error: StdIn:1:1: expected 'package', found 'EOF'
# - 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 --write .
working-directory: ./tests/go