Browse Source

Disable Coveralls service

We are covered by Codecov.
sbg
Lorenz Meier 5 years ago
parent
commit
a88234e6db
  1. 12
      .github/workflows/sitl_tests_coverage.yml

12
.github/workflows/sitl_tests_coverage.yml

@ -31,11 +31,13 @@ jobs:
# run: mkdir -p MAVSDK/build/default && cd MAVSDK/build/default && cmake ../.. && make -j4 && make install # run: mkdir -p MAVSDK/build/default && cd MAVSDK/build/default && cmake ../.. && make -j4 && make install
- name: Run Coverage Tests - name: Run Coverage Tests
run: make tests_integration_coverage run: make tests_integration_coverage
- name: Upload coverage information to Coveralls # We are not actively using coveralls, but we keep the config
uses: coverallsapp/github-action@master # in case the service should be re-enabled later
with: # - name: Upload coverage information to Coveralls
path-to-lcov: coverage/lcov.info # uses: coverallsapp/github-action@master
github-token: ${{ secrets.GITHUB_TOKEN }} # with:
# path-to-lcov: coverage/lcov.info
# github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload coverage information to Codecov - name: Upload coverage information to Codecov
uses: codecov/codecov-action@v1 uses: codecov/codecov-action@v1
with: with:

Loading…
Cancel
Save