mirror of
https://github.com/versity/versitygw.git
synced 2026-02-03 17:02:02 +00:00
24 lines
507 B
YAML
24 lines
507 B
YAML
name: betteralign
|
|
on: pull_request
|
|
jobs:
|
|
build:
|
|
name: Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "stable"
|
|
id: go
|
|
|
|
- name: Install betteralign
|
|
run: go install github.com/dkorunic/betteralign/cmd/betteralign@latest
|
|
|
|
- name: Run betteralign
|
|
run: betteralign -test_files ./...
|