Example test pdf_a_compliant: add a hyperlink in the example report #3168
Workflow file for this run
This file contains 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: Pull request check | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- labeled | |
- unlabeled | |
- edited | |
- synchronize | |
jobs: | |
build: | |
name: Pull request check | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
steps: | |
- run: pip install --upgrade attrs | |
- uses: actions/checkout@v4 | |
- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH} | |
- run: python3 -m pip install --user --pre c2cciutils[pr_checks] | |
- name: Check pull request | |
run: c2cciutils-pull-request-checks | |
env: | |
GITHUB_EVENT: ${{ toJson(github) }} | |
GITHUB_TOKEN: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }} |