Merge pull request #166 from Makdaam/validategenerated

Added validation for generated files
This commit is contained in:
Jim Minter 2020-02-17 14:38:22 -05:00 коммит произвёл GitHub
Родитель 3a62e4a70d 8a740eb038
Коммит b2ae5b2eff
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -46,14 +46,20 @@ jobs:
goroot: ${{ variables.GOROOT }}
modulePath: ${{ variables.modulePath }}
- script: |
set -x
set -xe
make test-go
[[ -z "$(git status -s)" ]]
workingDirectory: "${{ variables.modulePath }}"
displayName: "🧪Run Golang Unit Tests"
- script: |
go run ./vendor/github.com/jstemmer/go-junit-report/go-junit-report.go < uts.txt > report.xml
go run ./vendor/github.com/axw/gocov/gocov/*.go convert cover.out > coverage.json
go run ./vendor/github.com/AlekSi/gocov-xml/gocov-xml.go < coverage.json > coverage.xml
workingDirectory: "${{ variables.modulePath }}"
displayName: "🧪Run Golang Unit Tests"
displayName: "⚙️ Process Reports"
condition: succeededOrFailed()
- task: PublishTestResults@2
displayName: "📊 Publish tests results"
inputs: