.gitlab-ci.yml 307 Bytes
Newer Older
image: "python:3.7"

before_script:
  - python --version
  - pip install -q asn1tools
  - pip install -q lxml
  - pip install -q xmlschema

stages:
  - Check ASN.1

checkASN1:
  stage: Check ASN.1
  script:
  - python test/check_asn1.py

checkXSD:
  stage: Check ASN.1
  script:
  - python test/check_xsd.py