mirror of
https://github.com/spf13/viper
synced 2024-11-05 12:47:01 +00:00
5c0d079c4e
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
26 lines
432 B
YAML
26 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@v2
|
|
with:
|
|
go-version: '1.17'
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Ensure Viper compiles for WASM
|
|
run: GOOS=js GOARCH=wasm go build .
|