gnu_legacy: with GNU, write foreground first, else background first. #104
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
on: pull_request | |
name: Continuous integration | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
rust: | |
- stable | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
components: rustfmt, clippy | |
- run: cargo build --all-features | |
- run: cargo test | |
- run: cargo test --all-features | |
- run: cargo fmt --check --all | |
- run: cargo clippy -- -D warnings | |
- run: cargo run --example 256_colors | |
- run: cargo run --example hyperlink | |
- run: cargo run --example title |