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
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
toolchain:
description: Toolchain version
required: false
default: "1.80.0"
default: "1.85.0"
components:
description: Toolchain components
required: false
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: ./.github/actions/setup
with:
kind: check
toolchain: 1.83.0 # needed for the `icu` crates in pest_meta
toolchain: 1.85.0 # needed for the `clap_lex` crates in pest_debugger
- name: cargo check
run: cargo check --all --features pretty-print,const_prec_climber,memchr,grammar-extras,miette-error --all-targets

Expand All @@ -40,7 +40,7 @@ jobs:
with:
kind: check
components: clippy, rustfmt
toolchain: 1.83.0 # needed for the `icu` crates in pest_meta
toolchain: 1.85.0 # needed for the `clap_lex` crates in pest_debugger
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
Expand All @@ -62,7 +62,7 @@ jobs:
id: setup
with:
kind: check
toolchain: 1.83.0 # needed for the `icu` crates in pest_meta
toolchain: 1.85.0 # needed for the `clap_lex` crates in pest_debugger
- name: cargo doc
run: cargo doc --all --features pretty-print,const_prec_climber,memchr,grammar-extras,miette-error

Expand All @@ -79,7 +79,7 @@ jobs:
with:
kind: msrv
tools: cargo-msrv
toolchain: 1.83.0 # needed for the `icu` crates in pest_meta
toolchain: 1.85.0 # needed for the `clap_lex` crates in pest_debugger
- name: Check msrv
shell: sh
run: for crate in "derive" "generator" "grammars" "meta" "pest" "vm"; do cd "$crate" && cargo minimal-versions check && cd ..; done
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
id: setup
with:
kind: check
toolchain: 1.83.0 # needed for the `icu` crates in pest_meta
toolchain: 1.85.0 # needed for the `clap_lex` crates in pest_debugger
- name: Check feature powerset
run: cargo hack check --feature-powerset --optional-deps --exclude-all-features --skip not-bootstrap-in-src,cargo --keep-going --lib --tests --ignore-private

Expand All @@ -140,7 +140,7 @@ jobs:
with:
kind: check
components: rust-src
toolchain: nightly-2025-08-20 # upgrade this regularly
toolchain: nightly-2026-01-20 # upgrade this regularly
- name: check no_std compatibility
run: cd pest && cargo build -j1 -Z build-std=core,alloc --no-default-features --target x86_64-unknown-linux-gnu

Expand All @@ -156,7 +156,7 @@ jobs:
id: setup
with:
kind: check
toolchain: nightly-2025-08-20
toolchain: nightly-2026-01-20
tools: cargo-semver-checks
- name: check semver compatibility
shell: bash
Expand Down
Loading