mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-08-03 11:37:09 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](de0fac2e45...df4cb1c069)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
23 lines
560 B
YAML
23 lines
560 B
YAML
name: Rust version
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: ["main", "features/**", "release-**"]
|
|
pull_request:
|
|
branches: ["main", "features/**", "release-**"]
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
msrv:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
|
|
with:
|
|
persist-credentials: false
|
|
- uses: taiki-e/install-action@0631aa6515c7d545823c67cfae7ef4fc7f490154 # cargo-hack
|
|
with:
|
|
tool: cargo-hack
|
|
- run: cargo hack check --rust-version --workspace --all-targets
|