Skip to content

build: bump uvicorn from 0.29.0 to 0.32.0 in /azurefunctions-extensions-http-fastapi #84

build: bump uvicorn from 0.29.0 to 0.32.0 in /azurefunctions-extensions-http-fastapi

build: bump uvicorn from 0.29.0 to 0.32.0 in /azurefunctions-extensions-http-fastapi #84

---
###########################
###########################
## Linter GitHub Actions ##
###########################
###########################
name: Lint azurefunctions-extensions-http-fastapi
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
on:
workflow_dispatch:
push:
branches:
- dev
- main
- 'release/*'
paths:
- 'azurefunctions-extensions-http-fastapi/**'
pull_request:
branches:
- dev
- main
- 'release/*'
paths:
- 'azurefunctions-extensions-http-fastapi/**'
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint azurefunctions-extensions-http-fastapi
# Set the agent to run on
runs-on: ubuntu-latest
permissions:
actions: read
checks: read
contents: read
deployments: read
issues: read
packages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: write
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2
with:
fetch-depth: 0
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: super-linter/super-linter@v6.3.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_PYTHON: true
VALIDATE_PYTHON_BLACK: true # same as above
VALIDATE_PYTHON_ISORT: true # same as above
PYTHON_ISORT_CONFIG_FILE: .isort.cfg
FILTER_REGEX_INCLUDE: azurefunctions-extensions-http-fastapi/*
DEFAULT_BRANCH: origin/dev