feat: forgejo workflows
Some checks failed
Rust / build (push) Failing after 2m42s

This commit is contained in:
user0-07161 2026-02-10 18:35:23 +01:00
parent b803dcb20e
commit 72d53ba704

View file

@ -0,0 +1,26 @@
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