Skip to content

Bump werkzeug from 0.16.1 to 3.0.1 #9

Bump werkzeug from 0.16.1 to 3.0.1

Bump werkzeug from 0.16.1 to 3.0.1 #9

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
pull_request:
branches: [ rewrite ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Duplicate code detection tool
uses: platisd/duplicate-code-detection-tool@1.1.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
file_extensions: "py"
only_code: true