remove pre-EAR format description and add pointers to EAR resources #31
Workflow file for this run
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: Data models checks | |
on: | |
push: | |
paths: | |
- 'datamodels/**' | |
pull_request: | |
paths: | |
- 'datamodels/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install CDDL and CBOR diag tools | |
run: gem install --user-install cbor-diag cddl | |
- name: set up PATH | |
run: echo "$(gem env gempath | cut -d':' -f1)/bin" >> $GITHUB_PATH | |
- name: Check the attestation results data model | |
run: make -C datamodels/attestation-results/grammar |