mpvrc/.github/workflows/rust.yml
NotAShelf b7332bee26
ci: run cargo test in Rust workflow
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6a6a6964f95cb2581aec6ed60d3d0af8bfa9e994
2025-10-03 10:20:38 +03:00

22 lines
329 B
YAML

name: Build with Cargo
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
cargo-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose