Bump aiohttp from 3.8.4 to 3.9.0 #256
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
--- | |
################################# | |
## 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 |