* Feat: Enable sorting discussions by original comment (#422) * Feat: Improve popup UX (#426) * Feat: Automatically update MR summary details (#427) * Feat: Show update progress in winbar (#432) * Feat: Abbreviate winbar (#439) * Fix: Note Creation Bug (#441) * Fix: Checking whether comment can be created (#434) * Fix: Syntax in discussion tree (#433) * fix: improve indication of resolved threads and drafts (#442) * Docs: Various minor improvements (#445) --------- Co-authored-by: Jakub F. Bortlík <jakub.bortlik@proton.me>
45 lines
1019 B
YAML
45 lines
1019 B
YAML
name: Go
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- develop
|
|
paths:
|
|
- 'cmd/**' # Ignore changes to the Lua code
|
|
- 'go.sum'
|
|
- 'go.mod'
|
|
jobs:
|
|
go_lint:
|
|
name: Lint Go 💅
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.23.1'
|
|
cache: false
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v3
|
|
with:
|
|
version: v1.61.0
|
|
only-new-issues: true
|
|
skip-cache: true
|
|
- name: Install staticcheck
|
|
run: go install honnef.co/go/tools/cmd/staticcheck@2024.1.1
|
|
- name: Run staticcheck
|
|
run: staticcheck ./...
|
|
go_test:
|
|
name: Test Go 🧪
|
|
needs: [go_lint]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.19'
|
|
- name: Build
|
|
run: make compile
|
|
- name: Test
|
|
run: make test
|