Skip to content

get shift+enter working in ghostty #51

get shift+enter working in ghostty

get shift+enter working in ghostty #51

Workflow file for this run

name: Go CI
on:
pull_request:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".golangci.yml"
- "Makefile"
- ".github/workflows/go-ci.yml"
push:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".golangci.yml"
- "Makefile"
- ".github/workflows/go-ci.yml"
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test
run: go test ./...
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: golangci-lint (full codebase)
uses: golangci/golangci-lint-action@v8
with:
version: v2.8.0
args: ./...