stash/.github/workflows/rust.yml
dependabot[bot] c8ead9a308
build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-21 14:26:17 +00:00

23 lines
367 B
YAML

name: Build with Cargo
permissions:
contents: read
on:
workflow_dispatch:
push:
branches: [ "main" ]
paths: [ "src/**.rs", "Cargo.toml", "Cargo.lock"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Build
run: cargo build --verbose