There was an error while loading. Please reload this page.
1 parent d66405c commit 1ae3098Copy full SHA for 1ae3098
2 files changed
.github/workflows/TagBot.yml
@@ -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
@@ -27,3 +27,8 @@ jobs:
27
- uses: julia-actions/cache@v3
28
- uses: julia-actions/julia-buildpkg@v1
29
- uses: julia-actions/julia-runtest@v1
30
+ - uses: julia-actions/julia-processcoverage@v1
31
+ - uses: codecov/codecov-action@v7
32
33
+ files: lcov.info
34
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments