Skip to content

Commit

Permalink
Move CI to GitHubActions (#191)
Browse files Browse the repository at this point in the history
Co-authored-by: Théo Galy-Fajou <[email protected]>
  • Loading branch information
dkarrasch and theogf authored Dec 3, 2020
1 parent 068f820 commit e50899d
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 26 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:
pull_request:
branches:
- master
push:
branches:
- master
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.version == 'nightly' }}
strategy:
fail-fast: false
matrix:
version:
- '1.0'
- '1'
- '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: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
file: lcov.info
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

0 comments on commit e50899d

Please sign in to comment.