Skip to content

fix: exit keymap text did not reflect configured mapping (#34) #110

fix: exit keymap text did not reflect configured mapping (#34)

fix: exit keymap text did not reflect configured mapping (#34) #110

Workflow file for this run

name: format
on:
push:
branches:
- master
paths:
- "**.go"
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: "^1.25"
- name: Format with gofmt
run: gofmt -w .
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "style(format): run gofmt"
- name: Install goimports
run: go install golang.org/x/tools/cmd/goimports@latest
- name: Format with goimports
run: goimports -w .
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "style(format): run goimports"