[management] Add DB access duration to logs for context cancel #6806
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: golangci-lint | |
on: [pull_request] | |
permissions: | |
contents: read | |
pull-requests: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.actor_id }} | |
cancel-in-progress: true | |
jobs: | |
codespell: | |
name: codespell | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: codespell | |
uses: codespell-project/actions-codespell@v2 | |
with: | |
ignore_words_list: erro,clienta,hastable,iif,groupd | |
skip: go.mod,go.sum | |
only_warn: 1 | |
golangci: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
name: lint | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check for duplicate constants | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
! awk '/const \(/,/)/{print $0}' management/server/activity/codes.go | grep -o '= [0-9]*' | sort | uniq -d | grep . | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.x" | |
cache: false | |
- name: Install dependencies | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt update && sudo apt install -y -q libgtk-3-dev libayatana-appindicator3-dev libgl1-mesa-dev xorg-dev libpcap-dev | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
args: --timeout=12m |