Skip to content

Remove Data.toml from food directory #1

Remove Data.toml from food directory

Remove Data.toml from food directory #1

Workflow file for this run

name: PreviewPages
on:
#push:
# branches:
# - '!main'
pull_request:
workflow_dispatch:
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:
docs:
name: DocTest
runs-on: ubuntu-latest
permissions:
actions: write # needed to allow julia-actions/cache to proactively delete old caches that it has created
contents: write
statuses: write
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- uses: julia-actions/cache@v1
- name: Configure doc environment
shell: julia --project=docs --color=yes {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
- uses: julia-actions/julia-buildpkg@v1
- name: Run doctests
shell: julia --project=docs --color=yes {0}
run: |
using Documenter: DocMeta, doctest
using OkinawaCompPhysFoodSurvey2024
DocMeta.setdocmeta!(OkinawaCompPhysFoodSurvey2024, :DocTestSetup, :(using OkinawaCompPhysFoodSurvey2024); recursive=true)
doctest(OkinawaCompPhysFoodSurvey2024)