Skip to content

Commit eddd9bc

Browse files
committed
CI updates
1 parent 242a453 commit eddd9bc

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest]
13-
gcc_v: [10] # Version of GFortran we want to use.
14-
python-version: [3.9]
13+
gcc_v: [14] # Version of GFortran we want to use.
14+
python-version: [3.12]
1515
env:
1616
FC: gfortran-${{ matrix.gcc_v }}
1717
GCC_V: ${{ matrix.gcc_v }}
@@ -23,15 +23,15 @@ jobs:
2323
submodules: recursive
2424

2525
- name: Install Python
26-
uses: actions/setup-python@v4 # Use pip to install latest CMake, & FORD/Jin2For, etc.
26+
uses: actions/setup-python@v5.4.0 # Use pip to install latest CMake, & FORD/Jin2For, etc.
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929

3030
- name: Setup Graphviz
3131
uses: ts-graphviz/setup-graphviz@v1
3232

3333
- name: Setup Fortran Package Manager
34-
uses: fortran-lang/setup-fpm@v5
34+
uses: fortran-lang/setup-fpm@v7
3535
with:
3636
github-token: ${{ secrets.GITHUB_TOKEN }}
3737

@@ -53,6 +53,7 @@ jobs:
5353
--install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.gcc_v }} 100 \
5454
--slave /usr/bin/gfortran gfortran /usr/bin/gfortran-${{ matrix.gcc_v }} \
5555
--slave /usr/bin/gcov gcov /usr/bin/gcov-${{ matrix.gcc_v }}
56+
sudo apt-get install libblas-dev liblapack-dev
5657
5758
# - name: Compile
5859
# run: fpm build --profile release
@@ -76,11 +77,12 @@ jobs:
7677
files: build/coverage/coverage.info
7778

7879
- name: Build documentation
79-
run: ford ./ford.md
80+
run: ford ./ford.md --externalize
8081

8182
- name: Deploy Documentation
8283
if: github.ref == 'refs/heads/master'
83-
uses: JamesIves/github-pages-deploy-action@v4.4.1
84+
uses: JamesIves/github-pages-deploy-action@v4.7.3
8485
with:
8586
branch: gh-pages # The branch the action should deploy to.
8687
folder: doc # The folder the action should deploy.
88+
single-commit: true

0 commit comments

Comments
 (0)