Skip to content

Commit

Permalink
Merge pull request #122 from SciML/massinstallaction/set-up-GitHubAct…
Browse files Browse the repository at this point in the history
…ionsCI

MassInstallAction: Install the GitHubActionsCI workflow on this repository
  • Loading branch information
ChrisRackauckas authored Nov 30, 2020
2 parents 0108ffb + b89f440 commit 9989737
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 63 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
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# RecursiveArrayTools.jl

[![Build Status](https://travis-ci.org/SciML/RecursiveArrayTools.jl.svg?branch=master)](https://travis-ci.org/SciML/RecursiveArrayTools.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/i1lp4skr4n6o76b5?svg=true)](https://ci.appveyor.com/project/ChrisRackauckas/recursivearraytools-jl-r8tdv)
[![Build Status](https://github.com/SciML/RecursiveArrayTools.jl/workflows/CI/badge.svg)](https://github.com/SciML/RecursiveArrayTools.jl/actions?query=workflow%3ACI)
[![Coverage Status](https://coveralls.io/repos/ChrisRackauckas/RecursiveArrayTools.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/ChrisRackauckas/RecursiveArrayTools.jl?branch=master)
[![codecov.io](http://codecov.io/github/ChrisRackauckas/RecursiveArrayTools.jl/coverage.svg?branch=master)](http://codecov.io/github/ChrisRackauckas/RecursiveArrayTools.jl?branch=master)

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

This file was deleted.

0 comments on commit 9989737

Please sign in to comment.