mirror of
https://github.com/MAGICGrants/truenas-apps.git
synced 2026-01-10 13:08:04 -05:00
27 lines
688 B
YAML
27 lines
688 B
YAML
name: dev_catalog_validation
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
ix-dev-validate:
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
image: ghcr.io/truenas/apps_validation:latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Adding git directory to safe path
|
|
run: git config --global --add safe.directory "$(pwd)"
|
|
- name: Fetch base branch history
|
|
run: git fetch -u origin master:master
|
|
- name: validate dev catalog
|
|
run: /bin/bash -c "/usr/local/bin/apps_dev_charts_validate validate --path $(pwd)"
|
|
- name: Validate Ports
|
|
run: ./.github/scripts/port_validation.py
|