mirror of
https://github.com/securego/gosec.git
synced 2024-11-06 03:55:50 +00:00
1923b6d18e
* Add a rule which detects file path traversal when extracting zip archive * Detect if any argument is derived from zip.File * Drop support for Go version 1.8
19 lines
398 B
YAML
19 lines
398 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.9
|
|
- "1.10"
|
|
- tip
|
|
|
|
install:
|
|
- go get -u github.com/golang/dep/cmd/dep
|
|
- go get -u github.com/golang/lint/golint
|
|
- go get -u github.com/onsi/ginkgo/ginkgo
|
|
- go get -u github.com/onsi/gomega
|
|
- go get -u golang.org/x/crypto/ssh
|
|
- go get -u github.com/GoASTScanner/gas/cmd/gas/...
|
|
- go get -v -t ./...
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
|
|
script: make test
|
|
|