Skip to content

PROP - 42 - Add External Wasm Runtime #110

PROP - 42 - Add External Wasm Runtime

PROP - 42 - Add External Wasm Runtime #110

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
lint-and-build:
name: Lint and Build
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
cache-dependency-path: "go.sum"
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.61.0
args: --config ./.golangci.yaml
- name: Install TinyGo
run: |
wget https://github.com/tinygo-org/tinygo/releases/download/v0.35.0/tinygo_0.35.0_amd64.deb
sudo dpkg -i tinygo_0.35.0_amd64.deb
- name: Build proxy
run: |
make all -j $(nproc)