From d681e19f1ec8a9cc92ba19deb8182ff145ae90cf Mon Sep 17 00:00:00 2001
From: Pavel Kirilin <win10@list.ru>
Date: Sun, 10 Oct 2021 18:55:02 +0400
Subject: [PATCH] Updated documentation. (#41)

Signed-off-by: Pavel <win10@list.ru>
---
 .github/workflows/test.yml | 1 +
 README.md                  | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index c76da29..220fc31 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -21,6 +21,7 @@ jobs:
           # All of these options are optional, so you can remove them if you are happy with the defaults
           concurrent_skipping: 'same_content'
           skip_after_successful_duplicate: 'true'
+          paths_ignore: '["**/README.md"]'
   pytest:
     needs: pre_job
     if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
diff --git a/README.md b/README.md
index 3b58385..c552391 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ python3 -m fastapi_template
 
 One of the coolest features is that this project is extremely small and handy.
 You can choose between different databases and even ORMs. 
-Currently SQLAlchemy1.4 and TortoiseORM are supported.
+Currently SQLAlchemy1.4, TortoiseORM and Ormar are supported.
 
 TUI and CLI and excellent code documentation.
 
@@ -56,7 +56,7 @@ $ python -m fastapi_template --help
 usage: FastAPI template [-h] [--version] [--name PROJECT_NAME]
                         [--description PROJECT_DESCRIPTION]
                         [--db {none,sqlite,mysql,postgresql}]
-                        [--orm {sqlalchemy,tortoise}]
+                        [--orm {none,ormar,sqlalchemy,tortoise}]
                         [--ci {none,gitlab,github}] [--redis] [--migrations]
                         [--kube] [--dummy] [--routers] [--swagger] [--force]
 
@@ -68,7 +68,7 @@ optional arguments:
                         Project description
   --db {none,sqlite,mysql,postgresql}
                         Database
-  --orm {sqlalchemy,tortoise}
+  --orm {none,ormar,sqlalchemy,tortoise}
                         ORM
   --ci {none,gitlab,github}
                         Choose CI support
-- 
GitLab