Skip to content

Commit 9796cf8

Browse files
authored
Merge branch 'master' into an/actionsversions
2 parents 99f5ae6 + 410ed9f commit 9796cf8

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
version:
16-
- '1.0'
17-
- '1'
18-
- 'nightly'
16+
- 'min'
17+
- 'lts'
18+
- 1
19+
- 'pre'
1920
os:
2021
- ubuntu-latest
2122
arch:
2223
- x64
2324
steps:
24-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2526
- uses: julia-actions/setup-julia@v2
2627
with:
2728
version: ${{ matrix.version }}
@@ -33,4 +34,4 @@ jobs:
3334
- uses: codecov/codecov-action@v5
3435
with:
3536
files: lcov.info
36-
token: ${{ secrets.CODECOV_TOKEN }}
37+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/docs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ jobs:
1010
name: Build Documentation
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- uses: julia-actions/setup-julia@v2
1515
with:
1616
version: '1'
1717
- uses: julia-actions/cache@v2
1818
- uses: julia-actions/julia-docdeploy@v1
1919
env:
20-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# KernelDensity.jl
22

33
[![CI](https://github.com/JuliaStats/KernelDensity.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaStats/KernelDensity.jl/actions/workflows/CI.yml)
4-
[![Coverage Status](https://coveralls.io/repos/github/JuliaStats/KernelDensity.jl/badge.svg)](https://coveralls.io/github/JuliaStats/KernelDensity.jl)
4+
[![codecov](https://codecov.io/github/JuliaStats/KernelDensity.jl/graph/badge.svg?token=Pvge67IhU8)](https://codecov.io/github/JuliaStats/KernelDensity.jl)
5+
[![Stable Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://juliastats.org/KernelDensity.jl/stable/)
56

67
Kernel density estimators for Julia.
78

0 commit comments

Comments
 (0)