feat: rework jj aliases, gopls options, dictation use whisper #14
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: shfmt | |
| on: | |
| pull_request: | |
| jobs: | |
| shfmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install tools | |
| run: bin/setup | |
| - name: run shfmt | |
| run: | | |
| find bin dotfiles -type f -print0 \ | |
| | xargs -0 grep -lZE '^#! ?/usr/bin/env bash|^#!/usr/bin/env bash|^#! ?/bin/bash' \ | |
| | xargs -0 shfmt -i 2 -ln bash -d |