Add CI job for checking catalog format

This commit is contained in:
Waqar Ahmed 2020-11-25 19:15:15 +05:00
parent 4d49433f91
commit c29cead638
1 changed files with 17 additions and 0 deletions

17
.github/workflows/format_validation.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: format_validation
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container:
image: sonicaj/catalog_validation:latest
steps:
- uses: actions/checkout@v1
name: Checkout
- name: Validate catalog format
run: |
/bin/bash -c "PWD=${pwd}; /usr/local/bin/catalog_validate validate --path $PWD"