Skip to content
Draft
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
6 changes: 2 additions & 4 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none
- uses: actions/checkout@v5
with: { fetch-depth: 0, filter: "blob:none" }
- uses: codespell-project/actions-codespell@v2
4 changes: 1 addition & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ jobs:
id-token: write # to authenticate as Trusted Publisher to pypi.org
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: blob:none
with: { fetch-depth: 0, filter: "blob:none" }
- uses: actions/setup-python@v6
with:
python-version: "3.x"
Expand Down
16 changes: 5 additions & 11 deletions .github/workflows/test-cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ jobs:
envs: ${{ steps.get-envs.outputs.envs }}
steps:
- uses: actions/checkout@v6
with:
filter: blob:none
fetch-depth: 0
with: { fetch-depth: 0, filter: "blob:none" }
- uses: astral-sh/setup-uv@v7
with:
enable-cache: false
Expand Down Expand Up @@ -54,9 +52,7 @@ jobs:
IO_MARK: ${{ matrix.io_mark }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: blob:none
with: { fetch-depth: 0, filter: "blob:none" }

- name: Install system dependencies
run: sudo apt install -y hdf5-tools
Expand Down Expand Up @@ -84,15 +80,15 @@ jobs:
uses: codecov/codecov-action@v5
with:
report_type: test_results
env_vars: ENV_NAME,IO_MARK
flags: ${{ matrix.env.name }},${{ matrix.io_mark }}
files: test-data/test-results.xml
use_oidc: true
fail_ci_if_error: true

- name: Upload coverage data
uses: codecov/codecov-action@v5
with:
env_vars: ENV_NAME,IO_MARK
flags: ${{ matrix.env.name }},${{ matrix.io_mark }}
files: test-data/coverage.xml
use_oidc: true
fail_ci_if_error: true
Expand All @@ -101,9 +97,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
filter: blob:none
with: { fetch-depth: 0, filter: "blob:none" }

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ jobs:

steps:
- uses: actions/checkout@v4 # TODO: upgrade once cirun image supports node 24
with:
fetch-depth: 0
filter: blob:none
with: { fetch-depth: 0, filter: "blob:none" }

- name: Nvidia SMI sanity check
run: nvidia-smi
Expand Down Expand Up @@ -88,6 +86,7 @@ jobs:
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: hatch-test.stable,gpu
fail_ci_if_error: true
files: test-data/coverage.xml

Expand Down
Loading