X.509 package updates #68
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
# This is a the Common Criteria build workflow that is triggered on push | |
name: Validate | |
# Controls when the action will run. Workflow runs when manually triggered using the UI | |
# or API. | |
on: [push, workflow_dispatch] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build-project: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- name: Checkout project and transforms | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Jing | |
run: wget -O - https://github.com/relaxng/jing-trang/releases/download/V20181222/jing-20181222.zip | jar -x | |
- name: Schema Validation | |
run: JING_JAR=jing*/bin/jing.jar make validate |