From 941388aceb22818927ab120bc07940898de4e214 Mon Sep 17 00:00:00 2001 From: Kilerd Chan Date: Wed, 28 Aug 2019 09:32:10 +0800 Subject: [PATCH] chore: use github actions --- .github/workflows/dev-rust.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/dev-rust.yml diff --git a/.github/workflows/dev-rust.yml b/.github/workflows/dev-rust.yml new file mode 100644 index 0000000..642fe6c --- /dev/null +++ b/.github/workflows/dev-rust.yml @@ -0,0 +1,19 @@ +name: Development Test + +on: + push: + branches: + - develop + - feature/* + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose