Skip to content

👻 Bump rust_decimal from 1.36.0 to 1.40.0 #199

👻 Bump rust_decimal from 1.36.0 to 1.40.0

👻 Bump rust_decimal from 1.36.0 to 1.40.0 #199

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- "dependabot/**"
paths-ignore:
- 'README.md'
pull_request: { }
env:
CI: true
jobs:
cargo-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@v2
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Install clippy
run: rustup component add clippy
- run: cargo fmt --check
- run: cargo check
- run: cargo clippy --all-targets --all-features -- -D warnings
cargo-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@v2
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- run: cargo test