Skip to content

patch(pipeline): use LocalTemplates and adjust CompileLite call + upg… #2579

patch(pipeline): use LocalTemplates and adjust CompileLite call + upg…

patch(pipeline): use LocalTemplates and adjust CompileLite call + upg… #2579

Workflow file for this run

# name of the action
name: build
# trigger on pull_request or push events
on:
pull_request:
push:
# pipeline to execute
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ darwin, linux, windows ]
steps:
- name: clone
uses: actions/checkout@v3
- name: install go
uses: actions/setup-go@v4
with:
# use version from go.mod file
go-version-file: 'go.mod'
cache: true
check-latest: true
- name: build
run: |
make build-${{ matrix.os }}