diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..87a3b08f --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,61 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you 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: Continuous Integration + +on: + push: + branches: [ master ] + tags: [ '*' ] + pull_request: + branches: [ master ] + types: [ opened, synchronize, reopened ] + schedule: + - cron: '30 1 * * 1,3,5' + +permissions: read-all + +jobs: + ci: + runs-on: ubuntu-22.04 + steps: + # Checkout just this repo and run scanCode before we do anything else + - name: Checkout client-go repo + uses: actions/checkout@v4 + with: + path: client-go + - name: Scan Code + uses: apache/openwhisk-utilities/scancode@master + + # Configure Go environment + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version-file: './client-go/go.mod' + + # Run unit tests for this repo + - name: Run unit tests + working-directory: client-go + run: | + make test + + # Run the intergration tests + - name: Run integration tests + working-directory: client-go + run: | + make integration_test