From 3946dd838b5cd69d1ba0c08bf69bf730f995da06 Mon Sep 17 00:00:00 2001 From: Viktor Gamov Date: Tue, 7 May 2024 10:18:44 -0400 Subject: [PATCH] Create makefile.yml adding GHA for smoke test --- .github/workflows/makefile.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/makefile.yml diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml new file mode 100644 index 0000000..6a16a68 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,24 @@ +name: Smoke Test + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Install dependencies + run: make pull_images + + - name: Run All + run: make run_default_make + + - name: Clean up + run: make stop_containers