Skip to content

Use DocumenterCitations for citations in the docs and docstrings (#30) #96

Use DocumenterCitations for citations in the docs and docstrings (#30)

Use DocumenterCitations for citations in the docs and docstrings (#30) #96

Workflow file for this run

name: tests
on:
push:
branches:
- main
tags: ['*']
pull_request:
workflow_dispatch:
release:
env:
JULIA_NUM_THREADS: auto
jobs:
tests:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
if: >-
!contains(github.ref, 'refs/tags/')
&& !contains(github.event.head_commit.message, '[skip ci]')
&& !contains(github.event.head_commit.message, '[skip tests]')
strategy:
matrix:
version:
- '1'
- 'nightly'
os:
- ubuntu-latest
include:
- os: windows-latest
version: '1'
- os: macOS-latest
version: '1'
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
show-versioninfo: true
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-processcoverage@latest
- uses: codecov/codecov-action@v3
if: "matrix.version == 'nightly' && matrix.os == 'ubuntu-latest'"
with:
file: lcov.info