Skip to content

Use annotations to give feedback on modern distributions instead of a… #69

Use annotations to give feedback on modern distributions instead of a…

Use annotations to give feedback on modern distributions instead of a… #69

name: Validate tar based distributions
on:
pull_request:
paths: ['distributions/**']
jobs:
check:
name: Validate tar based distributions changes
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pip packages
run: pip install -r distributions/requirements.txt
shell: bash
- name: Run validation
run: |
python distributions/validate-modern.py \
--repo-path . \
--compare-with-branch 'origin/${{ github.base_ref }}' \
--manifest distributions/DistributionInfo.json \
shell: bash