mirror of
https://github.com/ko-build/ko.git
synced 2025-02-13 19:42:26 +02:00
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
# Copyright 2020 The Knative Authors.
|
|
#
|
|
# 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.
|
|
|
|
# This file is automagically synced here from github.com/knative-sandbox/.github
|
|
# repo by knobots: https://github.com/mattmoor/knobots and will be overwritten.
|
|
|
|
name: Integration Test
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
branches: [ 'master' ]
|
|
|
|
jobs:
|
|
|
|
test:
|
|
name: Module Tests
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.14.x, 1.15.x]
|
|
platform: [ubuntu-latest]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
|
|
- name: Set up Go ${{ matrix.go-version }}
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
id: go
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Test
|
|
env:
|
|
GOPATH: does not matter
|
|
run: ./integration_test.sh
|