Add Gitea Actions workflow: ci.yml
Some checks failed
CI / test (push) Failing after 2m11s

This commit is contained in:
2026-02-05 14:56:39 +00:00
parent a2ae510563
commit addedc1e4d

View File

@@ -10,11 +10,24 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-rust@v1
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
rust-version: '1.70'
- run: cargo build --all-features
- run: cargo test --all-features
- run: cargo clippy --all-features -- -D warnings
- run: cargo fmt --check
toolchain: stable
profile: minimal
override: true
- name: Build project
run: cargo build --all-features
- name: Run tests
run: cargo test --all-features
- name: Run clippy
run: cargo clippy --all-features -- -D warnings
- name: Check formatting
run: cargo fmt --check