Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/CI_PublishTestPyPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
openblas_path: "/opt/homebrew/opt/openblas"
py_tag: "cp310"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: remove python/.gitignore
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PublishPyPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
openblas_path: "/opt/homebrew/opt/openblas"
py_tag: "cp313"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: remove python/.gitignore
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/VersionConsistencyCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runner_label: macos-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_cxx_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
os: [ubuntu-latest, macos-latest]

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

- name: Install dependencies (Ubuntu)
if: runner.os == 'Linux'
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
timeout-minutes: 60 # Allow up to 60 minutes for ILP64 tests

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

- name: Install dependencies with ILP64 BLAS
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_fortran.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Fortran with GCC/gfortran

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

- name: Install dependencies
run: |
Expand All @@ -29,7 +29,7 @@ jobs:
name: Fortran with Intel compilers

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

- name: Install Intel oneAPI
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install system dependencies (Ubuntu)
if: runner.os == 'Linux'
Expand Down
Loading