chore: add macOS .DS_Store system files and vim .swp files to the .gitignore list #857
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
| # This workflow checks and tests the package code, and it builds all package | |
| # artifacts whenever there were changes to a pull request. | |
| name: Check change set | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/_build.yaml | |
| permissions: | |
| contents: read | |
| with: | |
| disable-pip-audit: ${{ vars.DISABLE_PIP_AUDIT == 'true' }} |