From cda96f2f9e79e3aa37376ccbd68acd89c26fa1f3 Mon Sep 17 00:00:00 2001 From: rorajani Date: Mon, 22 May 2023 20:09:36 +0530 Subject: [PATCH] Add pre sanity Signed-off-by: rorajani --- .github/workflows/blossom-ci.yaml | 2 +- .github/workflows/pre-sanity.yml | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/pre-sanity.yml diff --git a/.github/workflows/blossom-ci.yaml b/.github/workflows/blossom-ci.yaml index 0ffe8b8e..a5b37eb4 100644 --- a/.github/workflows/blossom-ci.yaml +++ b/.github/workflows/blossom-ci.yaml @@ -36,7 +36,7 @@ jobs: if: | contains( '\ anstockatnv,\ - rohitrajani2018,\ + rorajani,\ cdesiniotis,\ shivamerla,\ ArangoGutierrez,\ diff --git a/.github/workflows/pre-sanity.yml b/.github/workflows/pre-sanity.yml new file mode 100644 index 00000000..7e2ef582 --- /dev/null +++ b/.github/workflows/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