Skip to content

Commit

Permalink
Merge pull request #19 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 Nov 30, 2020
2 parents 88fd6f7 + 5bd97a9 commit 0b45d0c
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 84 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
35 changes: 0 additions & 35 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 @@
# MuladdMacro.jl

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

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

This file was deleted.

0 comments on commit 0b45d0c

Please sign in to comment.