Bump requests from 2.32.3 to 2.32.4 #47
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: Test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| name: Lint and Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup python version | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.9" | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| # Start linting | |
| - name: Install linter dependencies | |
| run: pip install --disable-pip-version-check black flake8 isort[colors] pylint | |
| # Install all the requirements files found in this repository | |
| - name: Install python requirements | |
| run: find . -name 'requirements.txt' -exec pip install --disable-pip-version-check -r {} \; | |
| - name: Check format (black) | |
| run: black --color --check --diff . | |
| - name: Import ordering (isort) | |
| run: isort --color --check-only --diff . | |
| - name: Lint (flake8) | |
| run: flake8 | |
| - name: Create unique name | |
| run: | | |
| echo "VERSION=unit-test-$(echo $RANDOM | md5sum | head -c 20)" >> $GITHUB_ENV | |
| # Start testing | |
| - name: Create version | |
| uses: ./ | |
| with: | |
| email: ${{ secrets.JIRA_EMAIL }} | |
| api_token: ${{ secrets.JIRA_API_TOKEN }} | |
| host: ${{ secrets.JIRA_HOST }} | |
| project_key: ${{ secrets.JIRA_PROJECT_KEY }} | |
| version: ${{ env.VERSION }} | |
| - name: Release version | |
| uses: ./ | |
| with: | |
| email: ${{ secrets.JIRA_EMAIL }} | |
| api_token: ${{ secrets.JIRA_API_TOKEN }} | |
| host: ${{ secrets.JIRA_HOST }} | |
| project_key: ${{ secrets.JIRA_PROJECT_KEY }} | |
| version: ${{ env.VERSION }} | |
| release: true | |
| - name: Delete version | |
| uses: ./ | |
| with: | |
| email: ${{ secrets.JIRA_EMAIL }} | |
| api_token: ${{ secrets.JIRA_API_TOKEN }} | |
| host: ${{ secrets.JIRA_HOST }} | |
| project_key: ${{ secrets.JIRA_PROJECT_KEY }} | |
| version: ${{ env.VERSION }} | |
| delete: true |