mirror of
https://github.com/truecharts/library-charts.git
synced 2026-07-03 16:49:14 -03:00
18 lines
346 B
YAML
18 lines
346 B
YAML
name: format_validation
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ixsystems/catalog_validation:latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
name: Checkout
|
|
- name: Validate catalog format
|
|
run: |
|
|
/bin/bash -c "PWD=${pwd}; /usr/local/bin/catalog_validate validate --path $PWD"
|