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
2 changes: 1 addition & 1 deletion .github/workflows/main_bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
BENCHER_API_TOKEN: ${{ secrets.BENCHER_API_TOKEN }}
steps:
# Checkout the main branch
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Install rust stable
- uses: dtolnay/rust-toolchain@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
target: riscv64gc-unknown-linux-gnu

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

- name: Build wheels
uses: PyO3/maturin-action@v1
Expand All @@ -56,7 +56,7 @@ jobs:
name: Sdist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Build sdist
uses: PyO3/maturin-action@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Formatter check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions-rs/toolchain@v1
with:
Expand All @@ -42,7 +42,7 @@ jobs:
toolchain: [stable, nightly]
steps:
# Checkout the branch being tested
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Install rust stable
- uses: dtolnay/rust-toolchain@master
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
toolchain: [stable, nightly]
steps:
# Checkout the branch being tested
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Install python with numpy
- uses: actions/setup-python@v6
Expand Down
Loading