forked from LaconicNetwork/kompose
* Fix tls hostname for ingress with path * Possibility to set ExposeServiceTLS to true * keep full path when extracting host Co-authored-by: Tomas Kral <tomas.kral@gmail.com>
35 lines
559 B
YAML
35 lines
559 B
YAML
name: Go
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ^1.13
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
run: make bin
|
|
|
|
- name: Test
|
|
run: make test
|
|
|
|
- name: Upload a Build Artifact
|
|
uses: actions/upload-artifact@v2.1.4
|
|
with:
|
|
path: "kompose"
|