This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-client-go.git
The following commit(s) were added to refs/heads/master by this push:
new 32c4c3c Port CI from TravisCI to GitHub Actions (#161)
32c4c3c is described below
commit 32c4c3c81aac6c1edf2a92f40e34ff803b621faa
Author: David Grove <[email protected]>
AuthorDate: Fri Oct 4 09:23:20 2024 -0400
Port CI from TravisCI to GitHub Actions (#161)
---
.github/workflows/ci.yaml | 61 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
new file mode 100644
index 0000000..87a3b08
--- /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