diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml
index 4610129..b920eef 100644
--- a/.github/workflows/swift.yml
+++ b/.github/workflows/swift.yml
@@ -12,4 +12,6 @@ jobs:
- name: Build
run: xcodebuild -scheme Scout
- name: Run tests
- run: xcodebuild test -scheme Scout
\ No newline at end of file
+ run: xcodebuild test -scheme Scout
+ - name: Code coverage
+ run: bash <(curl -s https://codecov.io/bash)
\ No newline at end of file
diff --git a/README.md b/README.md
index 614ab26..396c9e0 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,9 @@ Swift package
+
+
+
Install
diff --git a/codecov.yml b/codecov.yml
new file mode 100644
index 0000000..62c2903
--- /dev/null
+++ b/codecov.yml
@@ -0,0 +1,3 @@
+coverage:
+ ignore:
+ - "Tests"
\ No newline at end of file