Updates envoy configs, uses nottinygc #23
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: CI | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "**/*.md" | |
- "LICENSE" | |
pull_request: | |
paths-ignore: | |
- "**/*.md" | |
- "LICENSE" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: v1.20.x | |
cache: true | |
- name: Install tinygo | |
uses: acifani/setup-tinygo@v1 | |
with: | |
tinygo-version: '0.30.0' | |
- name: Build binary | |
run: go run mage.go build | |
- name: Run tests | |
run: go run mage.go test | |
- name: Run e2e tests | |
run: go run mage.go e2e |