Skip to content

Commit

Permalink
fix: ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AMythicDev authored Jun 4, 2024
1 parent 415cdcf commit 13311a1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --all -- --check

Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build crate (Static Output)
run: cargo build --verbose --features=static_output,search
- name: Build crate (Tokio)
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
# This step helps separate buildtime and runtime errors in tests.
# Do not build or run doc tests
- name: Build tests (Static Output)
Expand All @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
# No terminal available in CI, only check the examples.
- name: Tokio
run: cargo check --example=dyn_tokio --features=dynamic_output
Expand All @@ -83,7 +83,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run documentation tests
run: cargo test --doc --all-features

Expand All @@ -92,7 +92,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
profile: minimal
Expand Down

0 comments on commit 13311a1

Please sign in to comment.