Files
dotmigrate/.gitea/workflows/ci.yml
7000pctAUTO f0b594004e
Some checks failed
Rust CI / build (push) Failing after 3s
Add Gitea Actions workflow: ci.yml
2026-02-04 10:30:34 +00:00

24 lines
504 B
YAML

name: Rust CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Rust
run: rustup default stable
- name: Build
run: cargo build --all-features
- name: Run tests
run: cargo test --all-features
- name: Check formatting
run: cargo fmt --check
- name: Run clippy
run: cargo clippy --all-features -- -D warnings