Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

MassInstallAction: Install the GitHubActionsCI workflow on this repository #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
# PyDSTool.jl

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

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

This file was deleted.