From f0ce798126f2cbf877eb1f5b4b41ce722e6a03cb Mon Sep 17 00:00:00 2001 From: rorajani Date: Mon, 22 May 2023 20:07:26 +0530 Subject: [PATCH] Add pre sanity Signed-off-by: rorajani --- .github/worklows/blossom-ci.yaml | 2 +- .github/worklows/pre-sanity.yml | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 .github/worklows/pre-sanity.yml diff --git a/.github/worklows/blossom-ci.yaml b/.github/worklows/blossom-ci.yaml index 7a288ca..ae6fb81 100644 --- a/.github/worklows/blossom-ci.yaml +++ b/.github/worklows/blossom-ci.yaml @@ -36,7 +36,7 @@ jobs: if: | contains( '\ anstockatnv,\ - rohitrajani2018,\ + rorajani,\ cdesiniotis,\ shivamerla,\ ArangoGutierrez,\ diff --git a/.github/worklows/pre-sanity.yml b/.github/worklows/pre-sanity.yml new file mode 100644 index 0000000..7e2ef58 --- /dev/null +++ b/.github/worklows/pre-sanity.yml @@ -0,0 +1,22 @@ +name: Run pre sanity + +# run this workflow for each commit +on: [pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Build dev image + run: make .build-image + + - name: Build + run: make docker-build + + - name: Tests + run: make docker-coverage + + - name: Checks + run: make docker-check