Skip to content

Add CI linting/formatting #8

Add CI linting/formatting

Add CI linting/formatting #8

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: Check formatting
run: go fmt ./...
working-directory: ./tests/go
- name: Check linting
run: go vet ./...
working-directory: ./tests/go
- name: Check golines
run: |
go install -u github.com/segmentio/golines
golines -w .
working-directory: ./tests/go