From a8c8614948bd50e03a5a783a863bbd2f6a34c3fe Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 9 Jun 2020 13:00:24 -0400 Subject: [PATCH] workflow indentation --- .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 07770b6da..88117be41 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,23 +52,23 @@ jobs: run: coverage run -m unittest -vv tests.unit.test_conf # run: coverage run -m unittest discover -vv tests.unit - if: startsWith(runner.os, 'linux') || startsWith(runner.os, 'mac') - env: - COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COVERALLS_PARALLEL: true - name: Submit to coveralls - run: | + env: + COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COVERALLS_PARALLEL: true + name: Submit to coveralls + run: | pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip - coveralls + coveralls complete_coverals: needs: test-unit 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 # tests-integration: # name: "tests / integration"