diff --git a/.forgejo/workflows/run_tests.yaml b/.forgejo/workflows/run_tests.yaml new file mode 100644 index 0000000..4c6ac06 --- /dev/null +++ b/.forgejo/workflows/run_tests.yaml @@ -0,0 +1,11 @@ +name: run tests +on: push + +jobs: + test: + name: cargo test + runs-on: docker + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - run: cargo test --all-features \ No newline at end of file