From 4a159b321891cb781720cb37a2878d7792f82f59 Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Fri, 22 Feb 2019 01:35:49 -0800 Subject: [PATCH] Fix CI (#69) * 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 --- .travis.yml | 4 +++- README.md | 3 +++ appveyor.yml | 4 +++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9816bc0..604a594 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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())' \ No newline at end of file + - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())' \ No newline at end of file diff --git a/README.md b/README.md index a03c782..fb645cc 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/appveyor.yml b/appveyor.yml index 3ff6062..c6719b1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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: