Skip to content

Commit 19dd719

Browse files
authored
Merge pull request #16 from mateuszbaran/mbaran/github-actions
Try using github actions instead of travis and appveyor for CI
2 parents e64672e + e169c62 commit 19dd719

File tree

6 files changed

+50
-61
lines changed

6 files changed

+50
-61
lines changed

.github/workflows/ci-nightly.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI-nightly
2+
on:
3+
push:
4+
branches: [master]
5+
tags: [v*]
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
name: Julia nightly - ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
os: [ubuntu-latest, macOS-latest, windows-latest]
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: julia-actions/setup-julia@v1
19+
with:
20+
version: nightly
21+
arch: x64
22+
- uses: julia-actions/julia-buildpkg@latest
23+
- uses: julia-actions/julia-runtest@latest

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [master]
5+
tags: [v*]
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
julia-version: [1.0, 1.1, 1.2, 1.3, 1.4]
15+
os: [ubuntu-latest, macOS-latest, windows-latest]
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: julia-actions/setup-julia@v1
19+
with:
20+
version: ${{ matrix.julia-version }}
21+
arch: x64
22+
- uses: julia-actions/julia-buildpkg@latest
23+
- uses: julia-actions/julia-runtest@latest
24+
- uses: codecov/codecov-action@v1
25+
if: ${{ matrix.julia-version == '1.4' && matrix.os =='ubuntu-latest' }}

.travis.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "HybridArrays"
22
uuid = "1baab800-613f-4b0a-84e4-9cd3431bfbb9"
33
authors = ["Mateusz Baran <mateuszbaran89@gmail.com>"]
4-
version = "0.3.4"
4+
version = "0.3.5"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Status | Coverage |
22
| :----: | :----: |
3-
| [![Build Status](https://travis-ci.com/mateuszbaran/HybridArrays.jl.svg?branch=master)](https://travis-ci.com/mateuszbaran/HybridArrays.jl) [![Build status](https://ci.appveyor.com/api/projects/status/72nb8pp4pp6e2q7x?svg=true)](https://ci.appveyor.com/project/mateuszbaran/hybridarrays-jl) | [ ![codecov.io](http://codecov.io/github/mateuszbaran/HybridArrays.jl/coverage.svg?branch=master)](http://codecov.io/github/mateuszbaran/HybridArrays.jl?branch=master) |
3+
| [![CI](https://github.com/mateuszbaran/HybridArrays.jl/workflows/CI/badge.svg)](https://github.com/mateuszbaran/HybridArrays.jl/actions?query=workflow%3ACI+branch%3Amaster) | [ ![codecov.io](http://codecov.io/github/mateuszbaran/HybridArrays.jl/coverage.svg?branch=master)](http://codecov.io/github/mateuszbaran/HybridArrays.jl?branch=master) |
44

55
# HybridArrays.jl
66

appveyor.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)