chore(deps): update typer requirement from <0.16.0,>=0.15.1 to >=0.15.1,<0.20.0 #106
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: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'helm_values_manager/**' | |
| - 'tests/**' | |
| - 'scripts/**' | |
| - 'plugin.yaml' | |
| - 'setup.py' | |
| - 'setup.cfg' | |
| - 'pyproject.toml' | |
| - 'tox.ini' | |
| - 'requirements*.txt' | |
| - '.github/workflows/test.yml' | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'helm_values_manager/**' | |
| - 'tests/**' | |
| - 'scripts/**' | |
| - 'plugin.yaml' | |
| - 'setup.py' | |
| - 'setup.cfg' | |
| - 'pyproject.toml' | |
| - 'tox.ini' | |
| - 'requirements*.txt' | |
| - '.github/workflows/test.yml' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.9', '3.10', '3.11', '3.12'] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 # Shallow clones should be disabled for better relevancy of analysis | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install tox tox-gh-actions | |
| - name: Test with tox | |
| run: tox | |
| - name: SonarCloud Scan | |
| if: matrix.python-version == '3.12' # Only run once, on the latest Python version | |
| uses: SonarSource/sonarqube-scan-action@v4 | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |