Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtrogdon committed Mar 25, 2021
2 parents 36f59dc + c7dca47 commit 4be22fd
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 2 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: CI
on:
- push
- pull_request
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.5'
- '^1.6.0-0'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- 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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ApproxFunRational

[![Build Status](https://travis-ci.com/tomtrogdon/ApproxFunRational.jl.svg?branch=master)](https://travis-ci.com/tomtrogdon/ApproxFunRational.jl)
[![Build Status](https://github.com/tomtrogdon/ApproxFunRational.jl/workflows/CI/badge.svg)](https://github.com/tomtrogdon/ApproxFunRational.jl/actions)
[![Codecov](https://codecov.io/gh/tomtrogdon/ApproxFunRational.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/tomtrogdon/ApproxFunRational.jl)
[![Coveralls](https://coveralls.io/repos/github/tomtrogdon/ApproxFunRational.jl/badge.svg?branch=master)](https://coveralls.io/github/tomtrogdon/ApproxFunRational.jl?branch=master)
[![DOI](https://zenodo.org/badge/215157266.svg)](https://zenodo.org/badge/latestdoi/215157266)
<!-- [![Build Status](https://travis-ci.com/tomtrogdon/ApproxFunRational.jl.svg?branch=master)](https://travis-ci.com/tomtrogdon/ApproxFunRational.jl) -->

0 comments on commit 4be22fd

Please sign in to comment.