From 27e9d2b39ce688a41212e7fb8523e9e792d33dc1 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 30 Jan 2026 04:00:58 +0400 Subject: Move CI to Gitea Actions --- .gitea/workflows/test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitea/workflows/test.yml (limited to '.gitea/workflows') diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..bd61616 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -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 -- cgit v1.2.3