From 06f8e69cdfca3244bf0c415343da005aec025553 Mon Sep 17 00:00:00 2001 From: Andrey Kataev Date: Tue, 30 Sep 2025 02:45:49 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=81=D0=BE=D0=BD=D0=B0=D1=80=D0=BA=D1=83=D0=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/lint-and-test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/lint-and-test.yml diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml new file mode 100644 index 0000000..c54e79a --- /dev/null +++ b/.github/workflows/lint-and-test.yml @@ -0,0 +1,19 @@ +name: "lint and test" +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + types: [ opened, synchronize, reopened ] + +permissions: + contents: read + pull-requests: write + +jobs: + lint-and-test: + uses: esclient/tools/.github/workflows/lint-and-test-go.yml@main + with: + go-version: '1.22.1' + secrets: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}