From 96ee05d7f0fb7301d4404a94421e19db9030026c Mon Sep 17 00:00:00 2001 From: "Masih H. Derkani" Date: Thu, 25 Sep 2025 10:14:19 +0100 Subject: [PATCH] Integrate UCI go lint Integrate UCI basic go linting into sei-db. --- .github/workflows/uci-go-lint.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/uci-go-lint.yml diff --git a/.github/workflows/uci-go-lint.yml b/.github/workflows/uci-go-lint.yml new file mode 100644 index 00000000..6f2ed36e --- /dev/null +++ b/.github/workflows/uci-go-lint.yml @@ -0,0 +1,20 @@ +name: UCI + +on: + pull_request: + push: + branches: + - main + workflow_dispatch: + +permissions: + contents: read + +concurrency: + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event_name == 'push' && github.sha || github.ref }} + cancel-in-progress: true + +jobs: + go-lint: + name: Go + uses: sei-protocol/uci/.github/workflows/go-lint.yml@v0.0.1 \ No newline at end of file