mirror of
https://github.com/aquasecurity/linux-bench.git
synced 2025-02-22 22:25:33 +01:00
28 lines
426 B
YAML
28 lines
426 B
YAML
---
|
|
language: go
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install -y rpm
|
|
|
|
script:
|
|
- make tests
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
deploy:
|
|
- provider: script
|
|
skip_cleanup: true
|
|
script: curl -sL https://git.io/goreleaser | bash
|
|
on:
|
|
tags: true
|
|
condition: "$TRAVIS_OS_NAME = linux"
|
|
|
|
|
|
env:
|
|
matrix:
|
|
- GO111MODULE=on
|