-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
V1 - Update to switch to CloudFormation provider schemas (#2583)
* Convert to using CloudFormation provider schemas * Many rule changes and API changes as we converted from specs to schemas --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
10b6a8b
commit 30ee387
Showing
4,950 changed files
with
864,941 additions
and
796,638 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,12 +18,14 @@ jobs: | |
python-version: ${{ matrix.python }} | ||
- name: Install Tox and any other packages | ||
run: pip install tox | ||
- name: Run Lint | ||
run: | | ||
pip install pre-commit | ||
pre-commit run --all-files | ||
- name: Run Tox | ||
run: | | ||
tox -e style | ||
tox -e type | ||
tox -e py | ||
- uses: codecov/[email protected] | ||
tox -e py -- -m "data or not data" | ||
- uses: codecov/[email protected] | ||
if: matrix.os == 'ubuntu-latest' | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
@@ -71,3 +73,4 @@ jobs: | |
with: | ||
ignore-vulns: | | ||
GHSA-r9hx-vwmv-q579 | ||
PYSEC-2022-43012 |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-ast | ||
- id: check-json | ||
exclude: "(test/fixtures/templates/bad/json_parse.json|test/fixtures/templates/bad/core/config_invalid_json.json|test/fixtures/templates/bad/duplicate.json)" | ||
- id: check-toml | ||
- id: check-vcs-permalinks | ||
- id: check-yaml | ||
exclude: "test/fixtures/templates/" | ||
args: [--unsafe] | ||
- id: debug-statements | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
args: [--fix, auto] | ||
- id: trailing-whitespace | ||
- repo: https://github.com/psf/black | ||
rev: 24.2.0 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
rev: "v0.2.2" | ||
hooks: | ||
- id: ruff | ||
- repo: https://github.com/PyCQA/bandit | ||
rev: "1.7.7" | ||
hooks: | ||
- id: bandit | ||
additional_dependencies: | ||
- "bandit[toml]" | ||
args: ["-c", "pyproject.toml"] | ||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: "v1.8.0" | ||
hooks: | ||
- id: mypy | ||
additional_dependencies: | ||
- "types-PyYAML" | ||
- "types-regex" | ||
- "types-requests" |
Oops, something went wrong.