chore(deps): update dependency rust to v1.91.1 #541
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: | |
| pull_request: | |
| branches-ignore: | |
| - "release-plz-*" | |
| push: | |
| branches: | |
| - main | |
| - master | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| tests: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| # - macos-latest | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUST_BACKTRACE: full | |
| SCCACHE_GHA_ENABLED: "true" | |
| RUSTC_WRAPPER: "sccache" | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: mozilla-actions/[email protected] | |
| - uses: jdx/mise-action@v3 | |
| with: | |
| # version 2025.5.11, a symlink is created for rust setup | |
| # without cache, missing components are installed | |
| # with cache, nothing is installed, but as rust tool is symlinked, it is not cached => missing components failure | |
| cache: false | |
| cache_save: false | |
| experimental: true | |
| - run: mise run --jobs 1 ci | |
| #- run: mise run test-each-feature |