s/HTTP3/HTTP/3 #624
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: CDDL Validation | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
name: "Validates CDDL for all documents" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ['3.3.0'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Apt update | |
run: sudo apt update | |
- name: Install System Dependencies | |
run: sudo apt-get install --yes libyaml-dev openssl | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Install Ruby gems | |
run: gem install cddl | |
- name: validate CDDL (main schema) | |
run: ./cddl_validate.sh draft-ietf-quic-qlog-main-schema.md | |
- name: validate CDDL (quic events) | |
if: success() || failure() | |
run: ./cddl_validate.sh draft-ietf-quic-qlog-quic-events.md | |
- name: validate CDDL (h3 events) | |
if: success() || failure() | |
run: ./cddl_validate.sh draft-ietf-quic-qlog-h3-events.md |