Skip to content

Commit

Permalink
Merge pull request #38 from SciML/massinstallaction/set-up-GitHubActi…
Browse files Browse the repository at this point in the history
…onsCI

MassInstallAction: Install the GitHubActionsCI workflow on this repository
  • Loading branch information
ChrisRackauckas authored Dec 1, 2020
2 parents 84cc312 + cbc208c commit 3b77472
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 65 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: 1
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
file: lcov.info
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# DiffEqUncertainty.jl

[![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)
[![Build Status](https://travis-ci.org/JuliaDiffEq/DiffEqUncertainty.jl.svg?branch=master)](https://travis-ci.org/JuliaDiffEq/DiffEqUncertainty.jl)
[![Build Status](https://github.com/SciML/DiffEqUncertainty.jl/workflows/CI/badge.svg)](https://github.com/SciML/DiffEqUncertainty.jl/actions?query=workflow%3ACI)
[![Coverage Status](https://coveralls.io/repos/JuliaDiffEq/DiffEqUncertainty.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/JuliaDiffEq/DiffEqUncertainty.jl?branch=master)
[![codecov.io](http://codecov.io/github/JuliaDiffEq/DiffEqUncertainty.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaDiffEq/DiffEqUncertainty.jl?branch=master)

Expand Down
42 changes: 0 additions & 42 deletions appveyor.yml

This file was deleted.

0 comments on commit 3b77472

Please sign in to comment.