honeycomb-ipc/.forgejo/workflows/rust.yml
user0-07161 72d53ba704
Some checks failed
Rust / build (push) Failing after 2m42s
feat: forgejo workflows
2026-02-10 18:35:23 +01:00

26 lines
415 B
YAML

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust
run: apt update && apt install cargo rustc -y
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose -- --no-capture