Skip to content

Commit

Permalink
Add a Github CI action (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholters committed Mar 6, 2020
1 parent 59016e4 commit 41641a5
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on:
push:
branches:
- develop
- master
tags: '*'
pull_request:

jobs:
test:
name: Test on Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.0', '1.1', '1.2', '1.3', 'nightly']
julia-arch: [x64, x86]
os: [ubuntu-latest, windows-latest, macOS-latest]
exclude:
- os: macOS-latest
julia-arch: x86
steps:
- uses: actions/checkout@v1.0.0
- uses: julia-actions/setup-julia@v1.0.1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/julia-runtest@v0.1.0
- uses: julia-actions/julia-uploadcodecov@v0.1.0
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: julia-actions/julia-uploadcoveralls@v0.1.0
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}

0 comments on commit 41641a5

Please sign in to comment.