Skip to content

Commit

Permalink
Merge pull request #210 from pdeffebach/GH_testing
Browse files Browse the repository at this point in the history
add github actions for testing
  • Loading branch information
pdeffebach authored Nov 26, 2020
2 parents 7523fc1 + a763438 commit fa75d67
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 45 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:
- 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.0'
- '1.5'
- 'nightly'
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
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# DataFramesMeta.jl

[![Coveralls](https://coveralls.io/repos/github/JuliaStats/DataFramesMeta.jl/badge.svg?branch=master)](https://coveralls.io/github/JuliaStats/DataFramesMeta.jl?branch=master)
[![Travis](https://travis-ci.org/JuliaData/DataFramesMeta.jl.svg?branch=master)](https://travis-ci.org/JuliaData/DataFramesMeta.jl)
[![CI Testing](https://github.com/JuliaData/DataFramesMeta.jl/workflows/CI/badge.svg)](https://github.com/JuliaData/DataFramesMeta.jl/actions?query=workflow%3ACI+branch%3Amaster)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaData.github.io/DataFramesMeta.jl/stable)
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaData.github.io/DataFramesMeta.jl/dev)

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

This file was deleted.

0 comments on commit fa75d67

Please sign in to comment.