Skip to content
This repository was archived by the owner on Feb 10, 2020. It is now read-only.

Commit 542b1af

Browse files
committed
Add Travis config
1 parent e4d0d29 commit 542b1af

File tree

4 files changed

+35
-4
lines changed

4 files changed

+35
-4
lines changed

‎.travis.yml‎

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
sudo: false
2+
language: go
3+
4+
go:
5+
- 1.9.x
6+
- 1.10.x
7+
- tip
8+
9+
matrix:
10+
allow_failures:
11+
- go: tip
12+
13+
before_script:
14+
- go get -u github.com/golang/lint/golint
15+
16+
script:
17+
- go test ./... -race
18+
19+
after_script:
20+
- test -z "$(gofmt -s -l -w . | tee /dev/stderr)"
21+
- test -z "$(golint ./... | tee /dev/stderr)"
22+
- go vet ./...
23+
24+
os:
25+
- linux
26+
- osx
27+
28+
notifications:
29+
email: false

‎README.md‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
# go-tocss
1+
2+
[![Build Status](https://travis-ci.org/bep/go-tocss.svg?branch=master)](https://travis-ci.org/bep/go-tocss)
3+
4+
25
WORK IN PROGRESS

‎scss/libsass/transpiler.go‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
// Use of this source code is governed by an MIT-style
44
// license that can be found in the LICENSE file.
55

6-
// Package libsass provides a SASS ans SCSS transpiler to CSS
7-
// using github.com/wellington/go-libsass/libs.
6+
// Package libsass a SCSS transpiler to CSS using github.com/wellington/go-libsass/libs.
87
package libsass
98

109
import (

‎scss/options.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Use of this source code is governed by an MIT-style
44
// license that can be found in the LICENSE file.
55

6-
// Package sass provides options for SASS transpilers. Note that there are no
6+
// Package scss provides options for SCSS transpilers. Note that there are no
77
// current pure Go SASS implementation, so the only option is CGO and LibSASS.
88
// But hopefully, fingers crossed, this will happen.
99
package scss

0 commit comments

Comments
 (0)