Expand the list of got_audit expected duplicate symbols. #72
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
| name: Validation | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| pre_commit: | |
| name: Check formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v5.0.0 | |
| with: | |
| python-version: "3.8" | |
| - uses: pre-commit/action@v3.0.0 | |
| docs_link_check: | |
| name: Check URLs in docs | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Check links | |
| uses: lycheeverse/lychee-action@v1.9.1 | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| with: | |
| args: --exclude-mail --accept=401 --no-progress 'docs/**/*.md' | |
| fail: false |