Browse Source

Add CI workflow.

pull/1/head v1.0.0
Fredrik Ekre 5 years ago
parent
commit
a8c03ce5b2
  1. 32
      .github/workflows/ci.yml

32
.github/workflows/ci.yml

@ -0,0 +1,32 @@ @@ -0,0 +1,32 @@
name: CI
on:
push:
branches:
- 'master'
- 'release-'
tags: '*'
pull_request:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '1'
- 'nightly'
os:
- ubuntu-latest
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
Loading…
Cancel
Save