Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/format-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7

- name: Run formatter
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
name: Lint check
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install fortitude linter
run: pip install fortitude-lint==0.7.1
Expand All @@ -39,8 +39,8 @@ jobs:
name: Test and lint utililities and analysis scripts
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- name: Run scripts via uv run
run: uv run -p 3.9 utils/analysis/tsh_traj_anal.py -h
- name: Run scripts directly using shebang
Expand Down
34 changes: 17 additions & 17 deletions .github/workflows/gfortran.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
CODECOV_NAME: ${{format('{0} GCC-{1}', github.job, matrix.gcc_v)}}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 2

Expand All @@ -58,7 +58,7 @@ jobs:
# pFUnit library is used to build and run unit tests
- name: pFUnit build Cache
id: pfunit-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/pfunit/build/installed
# To force a pFUnit rebuild (bust the cache), make a change to install_pfunit.sh
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: fortran-lang/setup-fortran@v1
id: setup-fortran
Expand All @@ -120,7 +120,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: fortran-lang/setup-fortran@v1
id: setup-fortran
Expand All @@ -144,7 +144,7 @@ jobs:
FC: gfortran
CODECOV_NAME: ${{format('{0}', github.job)}}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 2

Expand All @@ -153,7 +153,7 @@ jobs:

- name: TCBP build cache
id: tcpb-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/tcpb-cpp/lib
# To force a rebuild (bust the cache), make a change to install_tcpb.sh
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
GCC_V: ${{ matrix.gcc_v}}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 2
- name: Set GFortran version
Expand All @@ -202,7 +202,7 @@ jobs:

- name: pFUnit build Cache
id: pfunit-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/pfunit/build/installed
key: ${{ runner.os }}-ubuntu22.04-pfunit-gfortran${{ env.GCC_V }}-${{ hashFiles('dev_scripts/install_pfunit.sh') }}
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
env:
CODECOV_NAME: ${{format('{0}', github.job)}}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 2

Expand All @@ -240,7 +240,7 @@ jobs:

- name: pFUnit build Cache
id: pfunit-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/pfunit/build/installed
key: ${{ runner.os }}-ubuntu22.04-pfunit-gfortran-default-${{ hashFiles('dev_scripts/install_pfunit.sh') }}
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
CODECOV_NAME: ${{format('{0} GCC-{1} MPICH-{2}', github.job, matrix.gcc_v, matrix.mpich_v)}}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 2

Expand All @@ -303,7 +303,7 @@ jobs:

- name: MPICH build Cache
id: mpich-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/mpich/${{ env.MPICH_V }}/install
key: ${{runner.os}}-ubuntu22.04-mpich${{ env.MPICH_V }}-gfortran${{ env.GCC_V }}-${{hashFiles('dev_scripts/install_mpich.sh')}}
Expand Down Expand Up @@ -351,12 +351,12 @@ jobs:
OPENMPI_PATCH: "2"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 2
- name: OpenMPI build cache
id: openmpi-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/openmpi/${{ env.OPENMPI_V }}/install
key: ${{runner.os}}-ubuntu22.04-openmpi${{ env.OPENMPI_V }}-gfortran-default-${{hashFiles('dev_scripts/install_openmpi.sh')}}
Expand Down Expand Up @@ -395,12 +395,12 @@ jobs:
CODECOV_NAME: ${{format('{0} PLUMED-{1}', github.job, matrix.plumed_v)}}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 2
- name: Plumed build cache
id: plumed-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/plumed/${{ env.PLUMED_V }}/install
key: ${{runner.os}}-ubuntu22.04-plumed${{env.PLUMED_V}}-gcc-default-${{hashFiles('dev_scripts/install_plumed.sh')}}
Expand All @@ -411,7 +411,7 @@ jobs:

- name: pFUnit build Cache
id: pfunit-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/pfunit/build/installed
key: ${{ runner.os }}-ubuntu22.04-pfunit-gfortran-default-${{ hashFiles('dev_scripts/install_pfunit.sh') }}
Expand Down
Loading