mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-22 16:27:51 +00:00
Bumps [github.com/vbatts/git-validation](https://github.com/vbatts/git-validation) from 1.1.0 to 1.2.0. - [Release notes](https://github.com/vbatts/git-validation/releases) - [Commits](https://github.com/vbatts/git-validation/compare/v1.1.0...v1.2.0) --- updated-dependencies: - dependency-name: github.com/vbatts/git-validation dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
395 B
YAML
32 lines
395 B
YAML
language: go
|
|
|
|
go_import_path: github.com/vbatts/git-validation
|
|
|
|
go:
|
|
- "tip"
|
|
- "1.13.x"
|
|
|
|
env:
|
|
|
|
matrix:
|
|
|
|
sudo: false
|
|
|
|
install: true
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|
|
|
|
before_script:
|
|
- env
|
|
|
|
before_install:
|
|
- go get ./...
|
|
|
|
script:
|
|
- go vet -x ./...
|
|
- go build .
|
|
- go test -v ./...
|
|
- ./git-validation -run DCO,short-subject,dangling-whitespace -v
|