Outdated CI and Renovate configurations have been removed, and a new Dependabot configuration file for dependency management has been added.

This commit is contained in:
2025-01-24 20:49:24 +04:00
parent 3d2e970225
commit 0dc37e9604
7 changed files with 21 additions and 53 deletions

12
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,12 @@
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