Add CI job for checking catalog format
This commit is contained in:
parent
4d49433f91
commit
c29cead638
|
@ -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"
|
Loading…
Reference in New Issue