Skip to content
Closed
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
18 changes: 9 additions & 9 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 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 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 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 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 Down Expand Up @@ -351,7 +351,7 @@ jobs:
OPENMPI_PATCH: "2"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 2
- name: OpenMPI build cache
Expand Down Expand Up @@ -395,7 +395,7 @@ 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
Expand Down
Loading