workflow indentation
This commit is contained in:
parent
0e9184048c
commit
a8c8614948
1 changed files with 11 additions and 11 deletions
22
.github/workflows/main.yml
vendored
22
.github/workflows/main.yml
vendored
|
@ -52,23 +52,23 @@ jobs:
|
||||||
run: coverage run -m unittest -vv tests.unit.test_conf
|
run: coverage run -m unittest -vv tests.unit.test_conf
|
||||||
# run: coverage run -m unittest discover -vv tests.unit
|
# run: coverage run -m unittest discover -vv tests.unit
|
||||||
- if: startsWith(runner.os, 'linux') || startsWith(runner.os, 'mac')
|
- if: startsWith(runner.os, 'linux') || startsWith(runner.os, 'mac')
|
||||||
env:
|
env:
|
||||||
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
COVERALLS_PARALLEL: true
|
COVERALLS_PARALLEL: true
|
||||||
name: Submit to coveralls
|
name: Submit to coveralls
|
||||||
run: |
|
run: |
|
||||||
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
|
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
|
||||||
coveralls
|
coveralls
|
||||||
|
|
||||||
complete_coverals:
|
complete_coverals:
|
||||||
needs: test-unit
|
needs: test-unit
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Coveralls Finished
|
- name: Coveralls Finished
|
||||||
uses: coverallsapp/github-action@master
|
uses: coverallsapp/github-action@master
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
parallel-finished: true
|
parallel-finished: true
|
||||||
|
|
||||||
# tests-integration:
|
# tests-integration:
|
||||||
# name: "tests / integration"
|
# name: "tests / integration"
|
||||||
|
|
Loading…
Reference in a new issue