Move CI to Gitea Actions
All checks were successful
Test / cargo test (push) Successful in 1m37s

This commit is contained in:
2026-01-30 04:00:58 +04:00
parent b283e2a8df
commit 27e9d2b39c
2 changed files with 1 additions and 15 deletions

13
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,13 @@
name: Test
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --all
- run: cargo test --all-features