Skip to content
Snippets Groups Projects
Unverified Commit 946fdd0c authored by Samuel Guillemet's avatar Samuel Guillemet Committed by GitHub
Browse files

Merge pull request #20 from SamuelGuillemet/develop

Update README
parents be9d8407 5866a3e3
No related branches found
No related tags found
No related merge requests found
......@@ -9,5 +9,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0
......@@ -35,7 +35,7 @@ jobs:
run: |
mkdir -p ./version
echo "${{ needs.release-on-push.outputs.version }}" > ./version/version_number
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: version_number
path: ./version
......@@ -24,17 +24,8 @@
"python.analysis.inlayHints.callArgumentNames": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.inlayHints.functionReturnTypes": true,
"python.autoComplete.extraPaths": [
"./src"
],
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": ".venv/bin/pylint",
"python.linting.pylintArgs": [
"pylint.args": [
"--load-plugins",
"pylint_pydantic"
],
......@@ -44,11 +35,19 @@
"black"
],
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"tests",
"-vv",
"--cov=app",
"--cov-report=term-missing",
"--cov-report=html"
],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.defaultFormatter": "ms-python.black-formatter"
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeLens": true
},
"search.exclude": {
"**/dist": true,
......@@ -56,8 +55,13 @@
},
"files.exclude": {
"**/__pycache__": true,
".pytest_cache": true,
".mypy*": true,
".coverage": true,
"**/.pytest_cache": true,
"**/.mypy*": true,
"**/.coverage": true,
"**/.coverage.*": true,
"**/node_modules/": true,
},
"python.analysis.extraPaths": [
"./src"
],
}
\ No newline at end of file
......@@ -2,13 +2,12 @@
[![Python tests](https://github.com/SamuelGuillemet/zoom-python-webhook/actions/workflows/python-tests.yml/badge.svg)](https://github.com/SamuelGuillemet/zoom-python-webhook/actions/workflows/python-tests.yml)
[![pre-commit](https://github.com/SamuelGuillemet/zoom-python-webhook/actions/workflows/pre-commit.yaml/badge.svg)](https://github.com/SamuelGuillemet/zoom-python-webhook/actions/workflows/pre-commit.yaml)
[![CodeQL](https://github.com/SamuelGuillemet/zoom-python-webhook/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/SamuelGuillemet/zoom-python-webhook/actions/workflows/codeql-analysis.yml)
[![codecov](https://codecov.io/gh/SamuelGuillemet/zoom-python-webhook/branch/main/graph/badge.svg)](https://codecov.io/gh/SamuelGuillemet/zoom-python-webhook)
[![Deploy](https://github.com/SamuelGuillemet/zoom-python-webhook/actions/workflows/build.yml/badge.svg)](https://github.com/SamuelGuillemet/zoom-python-webhook/actions/workflows/build.yml)
This is a simple FastAPI app that handles Zoom Webhooks.
The goal of this app is to provide a simple way to handle Zoom Webhooks and to provide a simple way to extend the app with custom handlers.
The goal of this app is to handle Zoom Webhooks and to provide a simple way to extend the app with custom handlers.
---
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment