chore(deps): bump const-str from 0.7.1 to 1.0.0 in the dependencies group #218
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 | |
| - 'feat/**' | |
| pull_request: | |
| branches: | |
| - main | |
| - 'feat/**' | |
| schedule: | |
| - cron: '0 0 * * 0' # at midnight of each sunday | |
| workflow_dispatch: | |
| jobs: | |
| develop: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: taiki-e/install-action@just | |
| - uses: dtolnay/rust-toolchain@nightly | |
| with: | |
| components: rustfmt, clippy, miri | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: just ci | |
| msrv: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolchain: | |
| - 1.86.0 # MSRV | |
| - stable | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: taiki-e/install-action@just | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: just test | |
| audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: taiki-e/install-action@cargo-audit | |
| - run: cargo audit -D warnings | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| - uses: Swatinem/rust-cache@v2 | |
| - uses: taiki-e/install-action@just | |
| - uses: taiki-e/install-action@cargo-llvm-cov | |
| - run: | | |
| cargo llvm-cov --workspace --all-features --codecov --output-path target/codecov.json | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: target/codecov.json | |
| fail_ci_if_error: true |