Skip to content
Snippets Groups Projects

Resolve "validate xml file in CI/CD"

Merged Raul Barreras requested to merge 13-validate-xml-file-in-ci-cd into master
.gitlab-ci.yml 0 → 100644
+ 14
0
 
stages:
 
- test
 
 
before_script:
 
- rm -f /home/gitlab-runner/.docker/config.json
 
 
XML_Lint:
 
stage: test
 
image:
 
name: its-registry.unl.edu/unl-its/docker-ci/xml-lint:latest
 
tags:
 
- iam-pub, dockerd, shell
 
script:
 
- docker run -v ${PWD}:/work its-registry.unl.edu/unl-its/docker-ci/xml-lint:latest xml-lint /work/ --no-schema
Loading