Skip to content

fixup! add docstrings to public methods and build full API docs #164

fixup! add docstrings to public methods and build full API docs

fixup! add docstrings to public methods and build full API docs #164

Workflow file for this run

name: runtests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version: [lts, "1", pre]
os: [ubuntu-latest]
timeout-minutes: 60
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read
steps:
- uses: actions/checkout@v4
- name: "Setup Julia"
uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- name: "run tests"
uses: julia-actions/julia-runtest@v1
with:
coverage: false