diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index c76da2982249392009c04fc1aeb5fc051cdd0698..220fc31823662b6611b520addf1dfb2b6a7b7dec 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 3b58385d83ede6c2e6887a9397a6fe12551558ad..c55239170aa98d7a2bf8536a45c1a03a29bf74ae 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