From b56cbdda28b9f0cf6beb04fed3ded108f61ae967 Mon Sep 17 00:00:00 2001 From: hkepley Date: Mon, 3 Jul 2023 12:34:02 -0400 Subject: [PATCH] OCM-2369 | feat: Check PR Github Action, edited commit message action --- .github/workflows/check-commit-format.yml | 2 +- .github/workflows/check-pull-request.yml | 86 +++++++++++++++++++++++ 2 files changed, 87 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/check-pull-request.yml diff --git a/.github/workflows/check-commit-format.yml b/.github/workflows/check-commit-format.yml index 336bad7..2b2f487 100644 --- a/.github/workflows/check-commit-format.yml +++ b/.github/workflows/check-commit-format.yml @@ -1,5 +1,5 @@ # following the contribution guide this check enforces the commit format -# [JIRA-TICKET] | [TYPE] : +# [JIRA-TICKET] | [TYPE]: name: 'Validate Commit Messages' on: pull_request: diff --git a/.github/workflows/check-pull-request.yml b/.github/workflows/check-pull-request.yml new file mode 100644 index 0000000..f3418e4 --- /dev/null +++ b/.github/workflows/check-pull-request.yml @@ -0,0 +1,86 @@ +# +# Copyright (c) 2023 Red Hat, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +name: Check pull request + +on: + pull_request: + branches: + - main + +permissions: + contents: read + pull-requests: read + +jobs: + + test: + name: Test + strategy: + matrix: + platform: + - ubuntu-latest + - macos-latest + - windows-latest + runs-on: ${{ matrix.platform }} + steps: + - name: Checkout the source + uses: actions/checkout@v3 + - name: Setup Go + uses: actions/setup-go@v4 + with: + go-version: 1.19 + - name: Setup dependency cache + uses: actions/cache@v3 + with: + path: | + ~/.cache/go-build + ~/go/pkg/mod + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-go- + - name: Ensure dependencies are downloaded + run: go mod download + - name: Setup Ginkgo + run: go install github.com/onsi/ginkgo/v2/ginkgo@v2.9 + - name: Run the tests + run: make test + + golangci: + name: Lint + runs-on: ubuntu-latest + steps: + - name: Checkout the source + uses: actions/checkout@v3 + - name: Setup Go + uses: actions/setup-go@v4 + with: + go-version: 1.19 + - name: Setup dependency cache + uses: actions/cache@v3 + with: + path: | + ~/.cache/go-build + ~/go/pkg/mod + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-go- + - name: Ensure dependencies are downloaded + run: go mod download + - name: golangci-lint + uses: golangci/golangci-lint-action@v3 + with: + version: v1.52