Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
Expand All @@ -29,7 +29,7 @@ jobs:
msrv-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install
run: rustup toolchain install ${BACKON_MSRV}
- name: Check MSRV
Expand All @@ -47,7 +47,7 @@ jobs:
- macos-latest
# - windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Test
run: cargo test --all-features --workspace
env:
Expand All @@ -58,7 +58,7 @@ jobs:
unit-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Test
run: cargo test --workspace
env:
Expand All @@ -68,7 +68,7 @@ jobs:
nightly-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: rustup toolchain install nightly
- name: Test
run: cargo +nightly test --all-features --workspace
Expand All @@ -80,7 +80,7 @@ jobs:
wasm-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- crate: backon-macros
tag_prefix: backon-macros-v
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: ${{ startsWith(github.ref_name, matrix.tag_prefix) }}
- name: Authenticate with crates.io
if: ${{ startsWith(github.ref_name, matrix.tag_prefix) }}
Expand Down
Loading