-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port CI from TravisCI to GitHub Actions (#161)
- Loading branch information
1 parent
0fb42a7
commit 32c4c3c
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |