From c8f2cd19ba20a77c96467dfcf97c09a173f05246 Mon Sep 17 00:00:00 2001 From: Mayank Shah Date: Tue, 13 Oct 2020 12:20:30 +0530 Subject: [PATCH] CI: Add GH Actions for sanity tests Signed-off-by: Mayank Shah --- .github/workflows/sanity.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/sanity.yaml diff --git a/.github/workflows/sanity.yaml b/.github/workflows/sanity.yaml new file mode 100644 index 00000000..edc963f0 --- /dev/null +++ b/.github/workflows/sanity.yaml @@ -0,0 +1,16 @@ +name: Sanity Tests +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] +jobs: + test: + name: Sanity tests + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Run tests + run: | + make sanity-test \ No newline at end of file