Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ updates:
- package-ecosystem: "julia" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
interval: "daily"
groups:
all-julia-packages:
patterns:
- "*"
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
interval: "weekly"
19 changes: 2 additions & 17 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,5 @@ on:

jobs:
build:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v3
with:
version: '1'
- uses: julia-actions/cache@v3
- name: Install dependencies
shell: julia --color=yes --project=docs/ {0}
run: 'using Pkg; Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
run: julia --color=yes --project=docs/ docs/make.jl
uses: "SciML/.github/.github/workflows/documentation.yml@v1"
secrets: "inherit"
25 changes: 7 additions & 18 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,10 @@ on:
paths-ignore:
- 'docs/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
downgrade_mode: ['alldeps']
julia-version: ['1.10']
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-downgrade-compat@v2
with:
skip: Pkg,TOML
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
ALLOW_RERESOLVE: false
downgrade:
uses: "SciML/.github/.github/workflows/downgrade.yml@v1"
with:
julia-version: "1.10"
skip: "Pkg,TOML"
allow-reresolve: false
secrets: "inherit"
22 changes: 0 additions & 22 deletions .github/workflows/FormatCheck.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/Runic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: format-check

on:
push:
branches:
- 'master'
- 'main'
- 'release-'
tags: '*'
pull_request:

jobs:
runic:
uses: "SciML/.github/.github/workflows/runic.yml@v1"
secrets: "inherit"
8 changes: 8 additions & 0 deletions .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Spell Check

on: [pull_request]

jobs:
typos-check:
uses: "SciML/.github/.github/workflows/spellcheck.yml@v1"
secrets: "inherit"
4 changes: 4 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[default.extend-words]
# Polynomial / rational coefficient notation: [p0...pn, q1...qn]
pn = "pn"
qn = "qn"
2 changes: 1 addition & 1 deletion test/stats.jl
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
@test all(stderror(sol_rat) .> 0)
end

@testset "Explcit API Coverage (ExpSum)" begin
@testset "Explicit API Coverage (ExpSum)" begin
# Test ExpSumFitAlgorithm explicitly to ensure jacobian works
# y = k + p*exp(lam*x)
# Truth: k=1, p=2, lam=-0.5
Expand Down
Loading