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
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
18 changes: 18 additions & 0 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Downgrade
on:
pull_request:
branches:
- master
paths-ignore:
- 'doc/**'
push:
branches:
- master
paths-ignore:
- 'doc/**'
jobs:
test:
uses: "SciML/.github/.github/workflows/downgrade.yml@v1"
with:
julia-version: "lts"
secrets: "inherit"
15 changes: 15 additions & 0 deletions .github/workflows/FormatCheck.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"
30 changes: 30 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: TagBot
on:
issue_comment:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: "3"
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
42 changes: 42 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Tests"

on:
push:
branches:
- master
paths-ignore:
- "doc/**"
pull_request:
branches:
- master
paths-ignore:
- "doc/**"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}

jobs:
test:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- "1"
os:
- "ubuntu-latest"
- "windows-latest"
- "macOS-latest"
include:
- version: "min"
os: "ubuntu-latest"
- version: "pre"
os: "ubuntu-latest"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
julia-version: ${{ matrix.version }}
os: ${{ matrix.os }}
coverage-directories: "src"
secrets: inherit
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

9 changes: 8 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ ODEInterface_jll = "c771fb93-2439-5ece-a3b3-58fecce82101"
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

[compat]
julia = "1.0"
Dates = "1.10"
Libdl = "1.10"
LinearAlgebra = "1.10"
Markdown = "1.10"
ODEInterface_jll = "0.0.2"
Test = "1.10"
Unicode = "1.10"
julia = "1.10"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# ODEInterface

[![Travis](https://travis-ci.org/luchr/ODEInterface.jl.svg?branch=master)](https://travis-ci.org/luchr/ODEInterface.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/bu702cga2ovlio5x/branch/master?svg=true)](https://ci.appveyor.com/project/luchr/odeinterface-jl/branch/master)
[![Coverage Status](https://coveralls.io/repos/github/luchr/ODEInterface.jl/badge.svg?branch=master)](https://coveralls.io/github/luchr/ODEInterface.jl?branch=master)
[![Tests](https://github.com/luchr/ODEInterface.jl/actions/workflows/Tests.yml/badge.svg?branch=master)](https://github.com/luchr/ODEInterface.jl/actions/workflows/Tests.yml)
[![codecov](https://codecov.io/gh/luchr/ODEInterface.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/luchr/ODEInterface.jl)


This julia module provides an interface to solvers for
Expand Down
53 changes: 0 additions & 53 deletions appveyor.yml

This file was deleted.