From cd8e8345532842d5095f67c9bcfca5db718fcabd Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 12 Apr 2020 13:37:48 +0800 Subject: [PATCH] Github actions running the tests travis runs usually --- .github/workflows/rust.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000000..147910a021 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,21 @@ +name: Rust + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build-and-test: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Run tests + run: | + make test-gen + make gen-all-cli cargo-api ARGS=test + make cargo-api ARGS=doc + cargo test