From a2c5829526b4987044611770267b09513a554265 Mon Sep 17 00:00:00 2001 From: Smitty Date: Fri, 28 May 2021 11:56:48 -0400 Subject: [PATCH] Test in GH Actions --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 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..2966b4f --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +on: [push] + +name: Build/test + +jobs: + build_and_test: + name: Build and test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - uses: actions-rs/cargo@v1 + with: + command: test + args: --all-features