faet:support envoy rls #117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: write | |
# Always force the use of Go modules | |
env: | |
GO111MODULE: on | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Setup the environment. | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: "1.20" | |
# Checkout latest code | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
# Compile | |
- name: Build server | |
run: bash build.sh |