Skip to content

Commit

Permalink
Merge pull request #13 from MicheleCeresoli/ci-update
Browse files Browse the repository at this point in the history
GitHub CI update
  • Loading branch information
bgodard authored Nov 20, 2023
2 parents b411066 + d9f6c3c commit 7328c37
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 36 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
group:
- Core
version:
- '1'
- '1.6'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: actions/cache@v3
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@v3
with:
file: lcov.info
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[![Build Status](https://travis-ci.com/JuliaAstro/CALCEPH.jl.svg?branch=master)](https://travis-ci.com/JuliaAstro/CALCEPH.jl)
[![Build Status](https://github.com/JuliaAstro/CALCEPH.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/JuliaAstro/CALCEPH.jl/actions/workflows/CI.yml)
[![AppVoyer](https://ci.appveyor.com/api/projects/status/24rxwncnrij2o0co?svg=true)](https://ci.appveyor.com/project/bgodard/calceph-jl)
[![Coverage Status](https://coveralls.io/repos/JuliaAstro/CALCEPH.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/JuliaAstro/CALCEPH.jl?branch=master)
[![codecov.io](http://codecov.io/github/JuliaAstro/CALCEPH.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaAstro/CALCEPH.jl?branch=master)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaAstro.github.io/CALCEPH.jl/stable/)
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://JuliaAstro.github.io/CALCEPH.jl/dev/)
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaAstro.github.io/CALCEPH.jl/stable/)
[![Dev Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAstro.github.io/CALCEPH.jl/dev/)

This is a julia wrapper for [CALCEPH](https://www.imcce.fr/inpop/calceph/) a C library for reading planetary ephemeris files, such as [INPOPxx](https://www.imcce.fr/inpop), JPL DExxx and SPICE ephemeris files.

Expand Down

0 comments on commit 7328c37

Please sign in to comment.