honeycomb-ipc/.forgejo/workflows/rust.yml
user0-07161 cbda7f3d6f
Some checks failed
Rust / test (push) Failing after 5s
feat: forgejo workflows
2026-02-10 18:44:26 +01:00

18 lines
301 B
YAML

name: Rust
on: [push]
jobs:
test:
runs-on: docker
container:
image: rust:trixie
steps:
- name: prepare packages
run: apt update && apt install git node -y
- name: checkout
uses: actions/checkout@v4
- name: build
run: cargo build