From 8b9fb53ca548f5c9c5cd7e35e75700e9890ab229 Mon Sep 17 00:00:00 2001 From: Karcsesz Date: Sun, 17 Mar 2024 22:12:59 +0100 Subject: [PATCH] CI attempt: automated testing --- .forgejo/workflows/test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .forgejo/workflows/test.yml diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml new file mode 100644 index 0000000..aa2b729 --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -0,0 +1,9 @@ +on: [push] +jobs: + test: + name: cargo test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - run: cargo test --all-features \ No newline at end of file