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

24 lines
521 B
YAML

name: 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 --verbose
- name: Run tests
run: cargo test --all-features --verbose
- name: Check formatting
run: cargo fmt --check --all
- name: Run clippy
run: cargo clippy --all-features -- -D warnings