Skip to content

Commit

Permalink
Update cpp_ci.md
Browse files Browse the repository at this point in the history
  • Loading branch information
abap34 authored Sep 28, 2024
1 parent 82578d1 commit 8e227ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions posts/cpp_ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -610,12 +610,12 @@ int try_to_sum(int a, int b, int c) {
最後に、カバレッジ計測を Codecov で行うようにします。
[https://app.codecov.io/](https://app.codecov.io/) にいって Key をもらい、 Secrets に登録しておきます。
といっても本当に計測する部分はもうできているので、あとはそれを XML 形式にエクスポートして Codecov に渡すだけです。
[https://app.codecov.io/](https://app.codecov.io/) にいって Key をもらい、 Secrets に登録しておきます。
本当に計測する部分はもうできているので、あとはそれを XML 形式にエクスポートして Codecov に渡すだけです。
公式の example や色んな情報を見ると `bash (curl codecov...)` のような事をして直接(?) しているものが多いですが、以下のように Actions 経由で渡す方が色々設定できて圧倒的に良いと思います。
そして Action を書きます。
```yaml
name: Codecov
Expand Down

0 comments on commit 8e227ed

Please sign in to comment.