Added reg_key and reg_value attributes to Evidence Artifacts object. #683
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate (ocsf-validator) | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
validate: | |
name: Validate the schema | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository content | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install validator | |
run: python -m pip install 'ocsf-validator>=0.1.1,<0.2' | |
- name: Run validator | |
shell: bash | |
run: export FORCE_COLOR=1 && python -m ocsf_validator . |