Merge pull request #416 from Metaswitch/renovate/pypi-requests-vulner… #852
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
| # Copyright (c) Alianza, Inc. All rights reserved. | |
| name: Announcer | |
| 'on': | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| Build: | |
| runs-on: '${{ matrix.os }}' | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| python-version: | |
| - "3.12" | |
| - "3.11" | |
| - "3.10" | |
| steps: | |
| - name: 'Set up Python ${{ matrix.python-version }}' | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '${{ matrix.python-version }}' | |
| - uses: actions/checkout@v5 | |
| - run: bash install.sh | |
| - run: bash test.sh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |