Skip to content

Commit

Permalink
Merge pull request #356 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 committed Nov 30, 2020
2 parents 56b39c0 + 361a20f commit 837d71a
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# SciMLTutorials.jl: Tutorials for Scientific Machine Learning and Differential Equations

[![Build Status](https://github.com/SciML/SciMLTutorials.jl/workflows/CI/badge.svg)](https://github.com/SciML/SciMLTutorials.jl/actions?query=workflow%3ACI)

[![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)

SciMLTutorials.jl holds PDFs, webpages, and interactive Jupyter notebooks
Expand Down

0 comments on commit 837d71a

Please sign in to comment.