1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-24 08:23:43 +00:00
fiber/.travis.yml
2020-03-22 20:31:58 +01:00

24 lines
340 B
YAML

language: go
sudo: false
os:
- linux
- windows
- osx
go:
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
env:
- GO111MODULE=on
script:
# build test for supported platforms
- GOOS=linux go build
- GOOS=darwin go build
- GOOS=freebsd go build
- GOOS=windows go build
- GOARCH=386 go build
- go test -v
- go test -race -v