Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[pull] master from TheAlgorithms:master #91

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
jenningsloy318 merged 3 commits into AlgorithmAndLeetCode:master from TheAlgorithms:master
Jun 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: update codecov-action to v4 (TheAlgorithms#1605)
The token has been added to the repository secrets.
  • Loading branch information
vil02 authored Jun 23, 2024
commit 9010481c2930d65621f18f41c216f29fceaa8807
18 changes: 15 additions & 3 deletions .github/workflows/UploadCoverageReport.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ name: UploadCoverageReport
- master
pull_request:

env:
REPORT_PATH: "coverage/coverage-final.json"

jobs:
UploadCoverageReport:
runs-on: ubuntu-latest
Expand All @@ -25,9 +28,18 @@ jobs:
- name: Generate coverage report
run: npm test -- --coverage

- name: Upload coverage to codecov
uses: codecov/codecov-action@v3
- name: Upload coverage to codecov (tokenless)
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
uses: codecov/codecov-action@v4
with:
files: "${{ env.REPORT_PATH }}"
fail_ci_if_error: true

- name: Upload coverage to codecov (with token)
if: "! github.event.pull_request.head.repo.fork "
uses: codecov/codecov-action@v4
with:
files: "coverage/coverage-final.json"
token: ${{ secrets.CODECOV_TOKEN }}
files: "${{ env.REPORT_PATH }}"
fail_ci_if_error: true
...

AltStyle によって変換されたページ (->オリジナル) /