Skip to content

docs env

docs env #32

Workflow file for this run

name: CI
on:
push:
branches:
- main
- dev
tags: ['*']
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1'
- 'nightly'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- name: Install dependencies (including unregistrered dependencies)
shell: julia --project=@. --color=yes {0}
run: |
using Pkg
Pkg.add(url="https://github.com/Alexander-Barth/SpatialHashing.jl")
Pkg.instantiate()
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
docs:
name: Documentation
runs-on: ubuntu-latest
permissions:
contents: write
statuses: write
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- name: Configure doc environment
shell: julia --project=docs/ --color=yes {0}
run: |
using Pkg
Pkg.add(url="https://github.com/Alexander-Barth/SpatialHashing.jl")
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
- uses: julia-actions/julia-docdeploy@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
julia --project=docs -e '
using Documenter: DocMeta, doctest
using SmoothedParticleHydrodynamics
DocMeta.setdocmeta!(SmoothedParticleHydrodynamics, :DocTestSetup, :(using SmoothedParticleHydrodynamics); recursive=true)
doctest(SmoothedParticleHydrodynamics)'