Split dependabot-dismiss tooling into composite action + thin wrapper… #8
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: Test dismissal scripts | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| name: Run script tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Run Python unit tests | |
| run: python -m unittest discover -s scripts/tests -p "test_*.py" -v | |
| - name: Run gather-deps.sh test | |
| run: bash scripts/tests/test_gather_deps.sh |