From ea485778644f087047e9ffa35f287825aca0b6e4 Mon Sep 17 00:00:00 2001
From: Lex Berezhny <lex@damoti.com>
Date: Sat, 21 Aug 2021 09:15:20 -0400
Subject: [PATCH] github workflow syntax fix

---
 .github/workflows/main.yml | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 101a56982..e3808856a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -61,12 +61,12 @@ jobs:
         env:
           HOME: /tmp
         run: python -m unittest tests/unit/test_conf.py
-    - name: submit coverage report
-      uses: coverallsapp/github-action@master
-      with:
-        github-token: ${{ secrets.github_token }}
-        flag-name: tests-unit-${{ matrix.os }}
-        parallel: true
+      - name: submit coverage report
+        uses: coverallsapp/github-action@master
+        with:
+          github-token: ${{ secrets.github_token }}
+          flag-name: tests-unit-${{ matrix.os }}
+          parallel: true
 
   tests-integration:
     name: "tests / integration"
@@ -109,11 +109,11 @@ jobs:
     needs: ["tests-unit", "tests-integration"]
     runs-on: ubuntu-latest
     steps:
-    - name: Coveralls Finished
-      uses: coverallsapp/github-action@master
-      with:
-        github-token: ${{ secrets.github_token }}
-        parallel-finished: true
+      - name: Coveralls Finished
+        uses: coverallsapp/github-action@master
+        with:
+          github-token: ${{ secrets.github_token }}
+          parallel-finished: true
 
   build:
     needs: ["lint", "tests-unit", "tests-integration"]