Skip to content

Commit

Permalink
Clean up action scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristopherson committed Jan 21, 2025
1 parent bf44891 commit 82d78e7
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 18 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/doc-deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: doc-deployment

on: [push, pull_request]

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: '3.x'

- name: Install dependencies
run: pip install -v ford==6.1.17

- name: Build Documentation
run: ford docs.md

- uses: JamesIves/[email protected]
if: github.event_name == 'push' && github.repository == 'jchristopherson/linalg' && ( startsWith( github.ref, 'refs/tags/' ) || github.ref == 'refs/heads/master' )
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: doc
CLEAN: true
17 changes: 0 additions & 17 deletions .github/workflows/doxygen-gh-pages.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/fpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
gcc_v: [10] # Version of GFortran we want to use.
gcc_v: [12] # Version of GFortran we want to use.
include:
- os: ubuntu-latest
os-arch: linux-x86_64
Expand Down

0 comments on commit 82d78e7

Please sign in to comment.