Skip to content

Bump the cargo group with 46 updates #149

Bump the cargo group with 46 updates

Bump the cargo group with 46 updates #149

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "run-ci/**"
- "**/run-ci/**"
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
build-and-test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install Rust
run: |
rustup update stable
rustup default stable
rustup component add clippy rustfmt
- name: fmt
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy
- name: tests
run: make tests
- name: "Test (crossterm)"
run: |
cargo test --features=render-tui,render-tui-crossterm,render-line,render-line-crossterm,signal-hook,render-line-autoconfigure,progress-tree --all --bins --tests --examples
- name: benchmarks
run: make bench-ci
build-and-test-on-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install Rust
shell: bash # Use `bash` even on Windows, for `set -e` behavior.
run: |
rustup update stable
rustup default stable
- name: "Check (crossterm)"
run: |
cargo check --features=render-tui,render-tui-crossterm,render-line,render-line-crossterm,signal-hook,render-line-autoconfigure,progress-tree --all --bins --tests --examples
- name: "Test (crossterm)"
run: |
cargo test --features=render-tui,render-tui-crossterm,render-line,render-line-crossterm,signal-hook,render-line-autoconfigure,progress-tree --all -- --skip render::tui