Skip to content

Commit

Permalink
Fix CI (#69)
Browse files Browse the repository at this point in the history
* Add julia 1.1 and x64 to CI config, fix nightly build config

* Fix typo in travis ci that prevented coverage info from uploading

* Add travis and codecov badge to README

* Add OSX to travis runs
  • Loading branch information
davidanthoff authored and quinnj committed Feb 22, 2019
1 parent 950bf4b commit 4a159b3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
language: julia
os:
- linux
- osx
julia:
- 1.0
- 1.1
- nightly
notifications:
email: false
after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage Codecov.submit(process_folder())'
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
### Tables.jl

[![Build Status](https://travis-ci.org/JuliaData/Tables.jl.svg?branch=master)](https://travis-ci.org/JuliaData/Tables.jl)
[![Codecov](https://codecov.io/gh/JuliaData/Tables.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaData/Tables.jl)

The Tables.jl package provides simple, yet powerful interface functions for working with all kinds tabular data through predictable access patterns.

```julia
Expand Down
4 changes: 3 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
environment:
matrix:
- julia_version: 1.0
- julia_version: latest
- julia_version: 1.1
- julia_version: nightly

platform:
- x86 # 32-bit
- x64 # 64-bit

branches:
only:
Expand Down

0 comments on commit 4a159b3

Please sign in to comment.