Skip to content
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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run rustfmt
run: cargo fmt --all -- --check

Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- wasm32-unknown-unknown

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Rust
run: rustup target add ${{ matrix.target }}
- name: Run Clippy
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
# avx512vl, but occasionally doesn't. Maybe one day we can enable it.

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Rust
run: rustup target add ${{ matrix.target }}

Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- aarch64-apple-darwin
- x86_64-apple-darwin
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Rust
run: rustup target add ${{ matrix.target }}

Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
- { name: default, RUSTFLAGS: "" }
- { name: simd128, RUSTFLAGS: "-C target-feature=+simd128" }
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Test (debug)
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
# - { target: riscv64gc-unknown-linux-gnu, target_feature: "+v,+zvl128b" }

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Rust
run: rustup target add ${{ matrix.target }}

Expand Down Expand Up @@ -253,6 +253,6 @@ jobs:
env:
PROPTEST_CASES: 16
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Test (Miri)
run: cargo miri test
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup Rust
run: |
Expand Down