Skip to content

Commit 1ae3098

Browse files
authored
Add codecov and TagBot.yml (#14)
1 parent d66405c commit 1ae3098

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/TagBot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
jobs:
8+
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: JuliaRegistries/TagBot@v1
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,8 @@ jobs:
2727
- uses: julia-actions/cache@v3
2828
- uses: julia-actions/julia-buildpkg@v1
2929
- uses: julia-actions/julia-runtest@v1
30+
- uses: julia-actions/julia-processcoverage@v1
31+
- uses: codecov/codecov-action@v7
32+
with:
33+
files: lcov.info
34+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)