Skip to content

Merge pull request #32 from maetshju/rmplotsjl #107

Merge pull request #32 from maetshju/rmplotsjl

Merge pull request #32 from maetshju/rmplotsjl #107

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Test, coverage, and docs
# Controls when the action will run.
on:
push:
branches: [main]
tags: [v*]
pull_request:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.6', '1']
julia-arch: [x64]
os: [ubuntu-latest]
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- run: sudo apt-get update; sudo apt-get install python3-scipy
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
file: lcov.info
- uses: julia-actions/julia-docdeploy@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.documenter }}