Procházet zdrojové kódy

travis: Also run Go tests where they exist, when running through Travis

tags/v0.9.0
Daniel Oaks před 6 roky
rodič
revize
470fc2a469
2 změnil soubory, kde provedl 6 přidání a 1 odebrání
  1. 3
    1
      .travis.yml
  2. 3
    0
      Makefile

+ 3
- 1
.travis.yml Zobrazit soubor

@@ -2,4 +2,6 @@ language: go
2 2
 
3 3
 install: make deps
4 4
 
5
-script: make
5
+script:
6
+- make
7
+- make test

+ 3
- 0
Makefile Zobrazit soubor

@@ -49,3 +49,6 @@ arm6:
49 49
 
50 50
 deps:
51 51
 	go get -v -d
52
+
53
+test:
54
+	cd irc && go test .

Načítá se…
Zrušit
Uložit