Skip to content
This repository was archived by the owner on Apr 30, 2019. It is now read-only.

Commit 30c84bb

Browse files
committed
Add .travis.yml
1 parent 87078df commit 30c84bb

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: go
2+
3+
go:
4+
- "1.11"
5+
6+
install:
7+
- mkdir /tmp/work
8+
- cd /tmp/work
9+
- go mod init example.com/m
10+
- go get github.com/gopherjs/gopherwasm@master
11+
- GO111MODULE=off go get github.com/gopherjs/gopherjs
12+
- GO111MODULE=off go get github.com/gopherjs/gopherwasm
13+
14+
script:
15+
- cd /tmp/wpork
16+
- GOOS=js GOARCH=wasm go test github.com/gopherjs/gopherwasm/...
17+
- gopherjs github.com/gopherjs/gopherjs/...

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# GopherWasm
22

3-
A wrapper for GopherJS (`gopherjs/js`) and Wasm (`syscall/js`)
3+
[![Build Status](https://travis-ci.org/gopherjs/gopherwasm.svg?branch=master)](https://travis-ci.org/gopherjs/gopherwasm)
4+
[![GoDoc](https://godoc.org/github.com/gopherjs/gopherwasm/js?status.svg)](http://godoc.org/github.com/gopherjs/gopherwasm/js)
45

5-
Work in progress
6+
A wrapper for GopherJS (`gopherjs/js`) and Wasm (`syscall/js`)

0 commit comments

Comments
 (0)