mirror of https://github.com/knative/func.git
32 lines
794 B
YAML
32 lines
794 B
YAML
name: Func Build
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
strategy:
|
|
matrix:
|
|
go: [1.18.x]
|
|
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Install Bash 4 on Mac
|
|
if: matrix.os == 'macos-latest'
|
|
run: |
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
brew update
|
|
|
|
brew install bash
|
|
brew install gnu-sed
|
|
|
|
echo "/usr/local/bin" >> $GITHUB_PATH
|
|
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
- name: Build
|
|
run: make build
|
|
|