Skip to content

Commit

Permalink
refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
urbanjost committed Apr 30, 2024
1 parent 7e8b458 commit 3f8b981
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy_api_docs.yml
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#name: Build FORD docs & deploy to gh-pages
name: FORD docs deployed to master
name: FORD docs deployed to main
on:
push:
branches:
- master
- main

jobs:
build:
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Install dependencies
run: python -m pip install --upgrade pip ford

- name: Checkout master
- name: Checkout main
uses: actions/checkout@v1

- name: Build docs
Expand All @@ -33,7 +33,7 @@ jobs:
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#BRANCH: gh_pages
BRANCH: master
BRANCH: main
FOLDER: docs/fpm-ford
TARGET_FOLDER: docs/fpm-ford
# ford(1) deletes the output directory before running
Expand Down
2 changes: 1 addition & 1 deletion ford.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ output_dir: docs/fpm-ford
project: M_datapac
summary: Statistics
project_github: https://github.com/urbanjost/M_datapac
project_download:
project_download: https://github.com/urbanjost/M_datapac/archive/refs/heads/master.zip
author: John S. Urban
author_email: urbanjost@comcast.net
github: https://github.com/urbanjost/M_datapac
Expand Down
22 changes: 12 additions & 10 deletions fpm.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,19 @@ keywords = ["fortran", "statistics"]
homepage = "https://github.com/urbanjost/M_datapac.git"

[install]
library=true
library=true

[build]
auto-executables = true
auto-tests = true
auto-examples = true
module-naming = true
auto-executables = true
auto-tests = true
auto-examples = true
module-naming = true

[[test]]
name="test_suite"
source-dir="test"
main="test_suite_M_datapac.f90"
[test.dependencies]
M_framework = {namespace = "GPF"}
name="test_suite"
source-dir="test"
main="test_suite_M_datapac.f90"
[test.dependencies]
M_framework = { git = "https://github.com/urbanjost/M_framework.git" }
#M_framework = {namespace = "GPF"}

0 comments on commit 3f8b981

Please sign in to comment.