Skip to content

Bump twilio from 8.7.0 to 8.10.2 #255

Bump twilio from 8.7.0 to 8.10.2

Bump twilio from 8.7.0 to 8.10.2 #255

Workflow file for this run

---
#################################
## Super Linter GitHub Actions ##
#################################
# Documentation:
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
name: Lint Code Base
on: [push, pull_request]
jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
# Checkout the code base
- name: Checkout Code
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper list of changed files
fetch-depth: 0
# Run Linter against code base
- name: Lint Code Base
uses: github/super-linter/slim@v5
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: /
PYTHON_BLACK_CONFIG_FILE: pyproject.toml
# Typing - meh
VALIDATE_PYTHON_MYPY: false
# we do flake8 with pre-commit so we can configure addons
VALIDATE_PYTHON_FLAKE8: false
# Don't run JSCPD - it's never useful, it's very verbose, and it's slow
VALIDATE_JSCPD: false