aboutsummaryrefslogtreecommitdiff
path: root/.gitea/workflows/test.yml
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-01-30 03:00:58 +0300
committerValentin Popov <valentin@popov.link>2026-01-30 03:00:58 +0300
commit27e9d2b39ce688a41212e7fb8523e9e792d33dc1 (patch)
tree7a084a55667eb6c60b0a7d23b63661ac0fa4a688 /.gitea/workflows/test.yml
parentb283e2a8dfdc64836b19be7bead02ff6d7541204 (diff)
downloadfparkan-27e9d2b39ce688a41212e7fb8523e9e792d33dc1.tar.xz
fparkan-27e9d2b39ce688a41212e7fb8523e9e792d33dc1.zip
Move CI to Gitea Actions
Diffstat (limited to '.gitea/workflows/test.yml')
-rw-r--r--.gitea/workflows/test.yml13
1 files changed, 13 insertions, 0 deletions
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