mirror of
https://github.com/truenas/scale-build.git
synced 2025-12-24 21:07:00 +00:00
Add github action to validate build manifest
This commit is contained in:
21
.github/workflows/manifest.yml
vendored
Normal file
21
.github/workflows/manifest.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: manifest_validation
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.9
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.9
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
- name: Validating manifest
|
||||
run: ./scripts/validate_manifest.py validate --path=./conf/build.manifest
|
||||
Reference in New Issue
Block a user