Files
fparkan/.gitea/workflows/test.yml
Valentin Popov 27e9d2b39c
All checks were successful
Test / cargo test (push) Successful in 1m37s
Move CI to Gitea Actions
2026-01-30 04:00:58 +04:00

14 lines
259 B
YAML

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