Fix: add more emojis and make emoji picker configurable #686
Workflow file for this run
This file contains 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: Go | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
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 |