mirror of
https://github.com/ko-build/ko.git
synced 2025-11-06 09:19:12 +02:00
33 lines
580 B
YAML
33 lines
580 B
YAML
name: Integration Test
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ['main']
|
|
|
|
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
|