[Merge] [#109] Update VS Code settings for compatibility with the lat… #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Coverage | |
on: push | |
jobs: | |
coverage: | |
name: Codecov Code Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repository Files | |
uses: actions/checkout@v3 | |
- name: Run Setup Action | |
uses: ./.github/workflows/composite-actions/setup | |
with: | |
python-version: release | |
- name: Run Python Tests | |
run: | | |
coverage run | |
coverage json | |
coverage report | |
- name: Upload Code Coverage Report to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: coverage.json | |
fail_ci_if_error: true | |
verbose: false |