From b3d2f483a3b84d9e1d9c54b3a8d0433afb1f726c Mon Sep 17 00:00:00 2001 From: "daniel.eades" Date: Fri, 25 Nov 2022 08:55:56 +0000 Subject: [PATCH] run tests in CI --- .github/workflows/CI.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/CI.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..5af43e2 --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,21 @@ +on: + push: + branches: [master] + pull_request: + +name: Continuous integration + +jobs: + + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + profile: minimal + - uses: actions-rs/cargo@v1 + with: + command: test