Calculates mark pane item count consistently with the rest of the app #333
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: Rust | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Test compilation | |
run: make check | |
- name: Run tests | |
run: make unit-tests | |
- name: fmt | |
run: cargo fmt --all -- --check | |
- name: clippy | |
run: cargo clippy -- -D warnings | |
- name: Check crate package size (feat. 'cargo diet') | |
continue-on-error: true | |
run: | | |
curl -LSfs https://raw.githubusercontent.com/the-lean-crate/cargo-diet/master/ci/install.sh | \ | |
sh -s -- --git the-lean-crate/cargo-diet --target x86_64-unknown-linux-musl --tag v1.2.4 | |
cargo diet -n --package-size-limit 90KB | |
build-and-test-on-windows: | |
name: Windows (nightly) | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: default | |
toolchain: nightly | |
override: true | |
- uses: Swatinem/rust-cache@v1 | |
- name: "Check (crossterm)" | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --all --bins --tests --examples | |
- name: "Test (crossterm)" | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --all | |