1
0
mirror of https://github.com/ko-build/ko.git synced 2025-11-06 09:19:12 +02:00
Files
ko-build/.github/workflows/modules-integration-test.yaml
2021-05-16 10:32:29 -04:00

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