feat: switch okdev tmux prefix to ctrl-a (#119) #518
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Install pre-commit | |
| run: python3 -m pip install --user pre-commit | |
| - name: Fmt | |
| run: ~/.local/bin/pre-commit run --all-files --hook-stage manual okdev-gofmt | |
| - name: Vet | |
| run: go vet ./... | |
| - name: Test | |
| run: go test -race ./... | |
| - name: Build | |
| run: go build ./cmd/okdev |