Skip to content

Commit da0d04a

Browse files
Automated commit made by MassInstallAction.jl
1 parent f971d5a commit da0d04a

File tree

4 files changed

+33
-65
lines changed

4 files changed

+33
-65
lines changed

.github/workflows/CI.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
push:
7+
branches:
8+
- master
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: julia-actions/setup-julia@v1
15+
with:
16+
version: 1
17+
- uses: actions/cache@v1
18+
env:
19+
cache-name: cache-artifacts
20+
with:
21+
path: ~/.julia/artifacts
22+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
23+
restore-keys: |
24+
${{ runner.os }}-test-${{ env.cache-name }}-
25+
${{ runner.os }}-test-
26+
${{ runner.os }}-
27+
- uses: julia-actions/julia-buildpkg@v1
28+
- uses: julia-actions/julia-runtest@v1
29+
- uses: julia-actions/julia-processcoverage@v1
30+
- uses: codecov/codecov-action@v1
31+
with:
32+
file: lcov.info

.travis.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# DiffEqProblemLibrary.jl
22

33
[![Join the chat at https://gitter.im/JuliaDiffEq/Lobby](https://badges.gitter.im/JuliaDiffEq/Lobby.svg)](https://gitter.im/JuliaDiffEq/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4-
[![Build Status](https://travis-ci.com/SciML/DiffEqProblemLibrary.jl.svg?branch=master)](https://travis-ci.com/SciML/DiffEqProblemLibrary.jl)
5-
[![Build status](https://ci.appveyor.com/api/projects/status/eampqfcm4c3b2ad9?svg=true)](https://ci.appveyor.com/project/ChrisRackauckas/diffeqproblemlibrary-jl)
4+
[![Build Status](https://github.com/SciML/DiffEqProblemLibrary.jl/workflows/CI/badge.svg)](https://github.com/SciML/DiffEqProblemLibrary.jl/actions?query=workflow%3ACI)
65

76
DiffEqProblemLibrary.jl is a component package in the DifferentialEquations ecosystem. It premade
87
problems for the differential equations solvers. These can either be used as tests

appveyor.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)