Format negative currency values in red #75
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: CI | |
on: [ push ] | |
jobs: | |
build_and_test: | |
name: Rust Cargo Build | |
# We could try to cross compile like this in future: | |
# https://blog.urth.org/2023/03/05/cross-compiling-rust-projects-in-github-actions/ | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- run: cargo clippy --all-targets --all-features -- --deny warnings | |
- run: cargo check | |
- run: cargo test --all | |
- run: cargo build --release --all-features |