Skip to content

Commit

Permalink
test dir for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
drbergman committed Sep 5, 2024
1 parent 5b20085 commit 002315e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}



jobs:
test:
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
Expand Down Expand Up @@ -79,6 +77,7 @@ jobs:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false

docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
println("make.jl: pwd = $(pwd())")
println("make.jl: @__DIR__ = $(@__DIR__)")

using pcvct
using Documenter

Expand Down
3 changes: 3 additions & 0 deletions src/VCTModule.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
println("VCTModule.jl: pwd = $(pwd())")
println("VCTModule.jl: @__DIR__ = $(@__DIR__)")

# each file (includes below) has their own export statements
export initializeVCT, resetDatabase, addGridVariation, addGridRulesetsVariation, runAbstractTrial, readTrialSamplings, getSimulations, deleteSimulation
export addLHSVariation, addLHSRulesetsVariation
Expand Down
3 changes: 3 additions & 0 deletions src/pcvct.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module pcvct
println("pcvct.jl: pwd = $(pwd())")
println("pcvct.jl: @__DIR__ = $(@__DIR__)")


include("VCTModule.jl")

Expand Down

0 comments on commit 002315e

Please sign in to comment.