Skip to content

Commit b914166

Browse files
authored
Merge pull request #230 from JuliaControl/dependabot
added: `dependabot.yml` file to help with CI dependencies
2 parents c4af39a + 66d792e commit b914166

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/" # Location of package manifests
6+
schedule:
7+
interval: "weekly"

src/estimator/execute.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ delayed/predictor (2.) formulation:
235235
```jldoctest
236236
julia> estim2 = SteadyKalmanFilter(LinModel(ss(0.1, 0.5, 1, 0, 4)), nint_ym=0, direct=true);
237237
238-
julia> x̂ = round.(preparestate!(estim2, [1]), digits=3)
238+
julia> x̂ = round.(preparestate!(estim2, [1]), digits=2)
239239
1-element Vector{Float64}:
240-
0.01
240+
0.5
241241
242242
julia> estim1 = SteadyKalmanFilter(LinModel(ss(0.1, 0.5, 1, 0, 4)), nint_ym=0, direct=false);
243243

0 commit comments

Comments
 (0)