From a043b56c74cf1a4428d7211f0a97f392f87201b6 Mon Sep 17 00:00:00 2001 From: "Ian K. Guimaraes" Date: Fri, 1 Nov 2024 18:43:11 -0300 Subject: [PATCH] chore: add tests workflow --- .github/workflows/tests.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..582cc72 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,26 @@ +name: Tests + +on: + push: + branches: + - '**' + pull_request: + branches: + - '**' + +jobs: + + test: + name: Run tests + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - name: Run tests + run: cargo test