Update crossterm requirement from 0.27.0 to 0.28.1 #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Specte-rs CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
code_cleaniness_checks: | |
name: Formatting Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
with: | |
rust-version: nightly | |
components: rustfmt, clippy | |
- uses: actions/checkout@v4 | |
- run: cargo fmt --check | |
- run: cargo clippy --all | |
tests: | |
needs: code_cleaniness_checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
with: | |
rust-version: stable | |
components: rustfmt | |
targets: wasm32-unknown-unknown | |
- uses: actions/checkout@v4 | |
- name: Fetch Trunk | |
uses: jetli/[email protected] | |
with: | |
version: 'latest' | |
- run: cargo build | |
- run: cargo test |