From df6df7f30787213cb3801316f9fab0c0bc89d911 Mon Sep 17 00:00:00 2001 From: aram price Date: Wed, 28 Feb 2024 16:06:31 -0800 Subject: [PATCH] Add go workflow to lint src/bpm/ --- .github/workflows/go.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 00000000..5df2acc5 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,15 @@ +name: go +on: + push: + pull_request: +jobs: + lint: + runs-on: [ubuntu-latest] + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version-file: src/bpm/go.mod + - uses: golangci/golangci-lint-action@v3 + with: + working-directory: src/bpm/