mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-16 20:49:05 -04:00
This only makes sense to do for workflows that branch off of github.event.pull_request.draft, which only bindings_ci.yml does at this point in time.
17 lines
328 B
YAML
17 lines
328 B
YAML
name: Rust version
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
msrv:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: taiki-e/install-action@cargo-hack
|
|
- run: cargo hack check --rust-version --workspace --all-targets --ignore-private
|