From 0ea52ce5454cc5df02264b4da3608761b394ef8d Mon Sep 17 00:00:00 2001 From: Kevin Gimbel Date: Thu, 9 Nov 2023 08:59:45 +0100 Subject: [PATCH] ci: add test step --- .github/workflows/test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..c721080 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,13 @@ +on: [push, pull_request] +name: Test +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + - name: Run tests + run: "cargo test"