From 40f5dc6a1fd19e4d6eef0eda2e46e758c9166e2c Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Fri, 6 Aug 2021 16:31:07 -0700 Subject: [PATCH] basic test action --- .../continuous-integration-workflow.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/continuous-integration-workflow.yml diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml new file mode 100644 index 00000000..4ab97c33 --- /dev/null +++ b/.github/workflows/continuous-integration-workflow.yml @@ -0,0 +1,17 @@ +name: Continuous Integration + +on: + push: + branches: [main] + pull_request: ~ + +jobs: + test: + name: Standard test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@main + - name: Test + uses: icepuma/rust-action@master + with: + args: cargo test --release