diff options
| author | 2020-11-14 11:03:54 +0100 | |
|---|---|---|
| committer | 2020-11-14 11:03:54 +0100 | |
| commit | 8588d2dbdb44bc5b48e97ae511474ca19d129ee5 (patch) | |
| tree | a55633643c0dc5afc95b5c16281f968f1a38e0d3 /.github | |
| parent | Migrate CI Pipeline to GitHub Actions (diff) | |
Add CI dependency coveralls to our Pipfile
The dependency `coveralls` was installed directly in GitHub Actions, as
it's not required for local dev environments. However, it's a small
package and there's value in keeping all our dependency specifications
in one place. That's why I've moved it to the [dev] section of our
Pipfile.
Signed-off-by: Sebastiaan Zeeff <[email protected]>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint-test-build.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/lint-test-build.yml b/.github/workflows/lint-test-build.yml index dc472ec8e..05783e813 100644 --- a/.github/workflows/lint-test-build.yml +++ b/.github/workflows/lint-test-build.yml @@ -90,9 +90,7 @@ jobs: - name: Publish coverage report to coveralls.io env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - pip install coveralls - coveralls + run: coveralls build-and-push: needs: lint-test |