mirror of
https://github.com/truenas/scale-build.git
synced 2026-02-15 07:29:12 +00:00
* fix building on trixie * fix inconsistencies in pyproject.toml * fix manifest.yml * remove hard-coded debian version from readme
20 lines
378 B
YAML
20 lines
378 B
YAML
name: manifest_validation
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python 3.13
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.13'
|
|
- name: Validating manifest
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
make validate_manifest PYTHON=`which python`
|