Update convert_case requirement from 0.9 to 0.10 #338
Workflow file for this run
This file contains hidden or 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: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Add rustfmt and clippy | |
| run: rustup component add rustfmt clippy | |
| - name: Run cargo fmt | |
| run: cargo fmt --check | |
| - name: Run clippy | |
| run: cargo clippy --all-features -- -D warnings | |
| - name: Run clippy (tests) | |
| run: cargo clippy --tests --all-features | |
| - name: Run clippy (benches) | |
| run: cargo clippy --benches --all-features | |
| - name: Run clipping (examples) | |
| run: cargo clippy --examples --all-features | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Run tests | |
| run: cargo test --all-features | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Build | |
| run: cargo build --release --all-features | |
| - name: Build (examples) | |
| run: cargo build --release --examples --all-features |