Add Gitea Actions workflow: ci.yml
Some checks failed
CI / build (push) Failing after 3s

This commit is contained in:
2026-02-04 10:30:46 +00:00
parent f0b594004e
commit 0447332d2b

View File

@@ -1,10 +1,10 @@
name: Rust CI
name: CI
on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]
jobs:
build:
@@ -14,10 +14,10 @@ jobs:
- name: Set up Rust
run: rustup default stable
- name: Build
run: cargo build --all-features
run: cargo build --all-features --verbose
- name: Run tests
run: cargo test --all-features
run: cargo test --all-features --verbose
- name: Check formatting
run: cargo fmt --check
run: cargo fmt --check --all
- name: Run clippy
run: cargo clippy --all-features -- -D warnings