spf13--viper/.github/workflows/wasm.yaml
Mark Sagi-Kazar 5243f253fc
chore: rename files to yaml
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
2022-04-14 01:05:39 +02:00

27 lines
432 B
YAML

name: WASM
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
GOFLAGS: -mod=readonly
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.17'
- name: Checkout code
uses: actions/checkout@v3
- name: Ensure Viper compiles for WASM
run: GOOS=js GOARCH=wasm go build .