Skip to content

Commit

Permalink
Port CI from TravisCI to GitHub Actions (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrove-oss authored Oct 4, 2024
1 parent 0fb42a7 commit 32c4c3c
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/ci.yaml
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

0 comments on commit 32c4c3c

Please sign in to comment.