build: bump fastapi from 0.110.1 to 0.115.2 in /azurefunctions-extensions-http-fastapi #73
Workflow file for this run
This file contains 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
--- | |
########################### | |
########################### | |
## 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 |