Merge pull request #60 from rob-luke/ghtests

MRG: Use github actions for tests and expand platforms and versions
This commit is contained in:
bramtayl 2021-05-09 16:34:32 -04:00 committed by GitHub
commit d7d29880d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

43
.github/workflows/Tests.yml vendored Normal file
View file

@ -0,0 +1,43 @@
name: Tests
on:
pull_request:
push:
branches:
- master
tags: '*'
jobs:
test:
timeout-minutes: 30
name: ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.3'
- '1.4'
- '1.5'
- '1'
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
- x86
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- 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