forked from majduk/charm-apt-mirror
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update centrally managed files (#49)
* update .github/workflows/check.yaml * update .gitignore * update .github/workflows/check.yaml * update .gitignore * update .github/workflows/check.yaml * update .gitignore * update .github/workflows/check.yaml * update .gitignore * update .github/workflows/check.yaml * update .gitignore * update .github/workflows/check.yaml * update .gitignore * update .github/workflows/check.yaml * update .gitignore * update .github/workflows/check.yaml * update .gitignore * update .github/workflows/check.yaml * update .gitignore * update .github/workflows/check.yaml * update .gitignore * update .github/workflows/check.yaml --------- Co-authored-by: soleng-terraform[bot] <168111096+soleng-terraform[bot]@users.noreply.github.com> Co-authored-by: Samuel Allan <[email protected]>
- Loading branch information
1 parent
2cee591
commit c53e733
Showing
2 changed files
with
99 additions
and
16 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,13 +1,45 @@ | ||
.jujuignore | ||
.vscode/ | ||
# This file is centrally managed as a template file in https://github.com/canonical/solutions-engineering-automation | ||
# To update the file: | ||
# - Edit it in the canonical/solutions-engineering-automation repository. | ||
# - Open a PR with the changes. | ||
# - When the PR merges, the soleng-terraform bot will open a PR to the target repositories with the changes. | ||
|
||
# Python Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# Test files and directories | ||
.pytest_cache/ | ||
.coverage | ||
.tox | ||
reports/ | ||
**/report/ | ||
htmlcov/ | ||
.mypy_cache | ||
|
||
# python virtual environments (for local dev) | ||
.venv | ||
venv | ||
env | ||
|
||
# Build artefacts | ||
output/ | ||
.build/ | ||
.tox/ | ||
.venv/ | ||
build/ | ||
env/ | ||
venv/ | ||
__pycache__/ | ||
*.charm | ||
.coverage | ||
report/ | ||
.pytest_cache | ||
*.snap | ||
# python build artefacts | ||
deb_dist/ | ||
dist/ | ||
*.egg-info/ | ||
|
||
# Log files | ||
*.log | ||
|
||
# general backup files | ||
*~ | ||
*.bak | ||
|
||
# Note: for editor-specific files, please don't add them here, as they are specific to your environment, not the project. | ||
# Instead, consider using a global gitignore on your workstation. |