From dfd1da7f0d46d14d6a15ca98632e7471b3ce288b Mon Sep 17 00:00:00 2001 From: Vasiliy Tolstov Date: Sun, 19 Mar 2023 14:26:03 +0300 Subject: [PATCH] retest Signed-off-by: Vasiliy Tolstov --- .gitea/workflows/lint.yml | 31 +++++++++++++++++++++++++++++++ .gitea/workflows/pr.yml | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .gitea/workflows/lint.yml diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml new file mode 100644 index 00000000..fe0cd583 --- /dev/null +++ b/.gitea/workflows/lint.yml @@ -0,0 +1,31 @@ +name: lint +on: + pull_request: + branches: + - master + - v3 +jobs: + lint: + name: lint + runs-on: ubuntu-latest + steps: + - name: setup + uses: https://gitea.com/actions/setup-go@v3 + with: + go-version: 1.18 + - name: checkout + uses: https://gitea.com/actions/checkout@v3 + - name: deps + run: go get -v -d ./... + - name: lint + uses: https://github.com/golangci/golangci-lint-action@v3.4.0 + continue-on-error: true + with: + # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. + version: v1.30 + # Optional: working directory, useful for monorepos + # working-directory: somedir + # Optional: golangci-lint command line arguments. + # args: --issues-exit-code=0 + # Optional: show only new issues if it's a pull request. The default value is `false`. + # only-new-issues: true diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index 461f7a97..fdab548f 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -1,4 +1,4 @@ -name: prbuild +name: pr on: pull_request: branches: