More placeholders #73
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: metacheck | |
| on: | |
| pull_request: | |
| paths: | |
| - www/logos/*/index.md | |
| push: | |
| paths: | |
| - www/logos/*/index.md | |
| workflow_dispatch: | |
| jobs: | |
| metacheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install fflint | |
| run: | | |
| curl \ | |
| --location \ | |
| --silent \ | |
| https://github.com/FileFormatInfo/fflint/releases/latest/download/fflint_Linux_x86_64.tar.gz \ | |
| | tar -xz fflint | |
| - name: Check metadata keys | |
| run: | | |
| PATH=.:$PATH bin/chkmeta.sh | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Python dependencies | |
| run: pip install python-frontmatter | |
| - name: Check metadata links | |
| run: | | |
| python3 bin/chkmetalink.py |