Add tested user documentation site and GitHub Pages deployment #183
Workflow file for this run
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
| # SPDX-FileCopyrightText: 2026 LibreSign | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| name: spdx | |
| on: | |
| pull_request: | |
| jobs: | |
| spdx: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Verify SPDX/AGPL project metadata | |
| run: | | |
| test -f REUSE.toml | |
| test -f LICENSES/AGPL-3.0-or-later.txt | |
| php <<'PHP' | |
| <?php | |
| $j = json_decode(file_get_contents('composer.json'), true); | |
| if (($j['license'] ?? '') !== 'AGPL-3.0-or-later') { | |
| fwrite(STDERR, "Invalid license metadata\n"); | |
| exit(1); | |
| } | |
| PHP |