From 89e7de041e6d9c3d0c3776ca6225a3f4340e3869 Mon Sep 17 00:00:00 2001 From: cason Date: Mon, 4 Nov 2024 12:19:43 -0500 Subject: [PATCH] feat: started workflow --- .github/workflows/check_smoke_tests.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/check_smoke_tests.yml diff --git a/.github/workflows/check_smoke_tests.yml b/.github/workflows/check_smoke_tests.yml new file mode 100644 index 00000000..7dbf6079 --- /dev/null +++ b/.github/workflows/check_smoke_tests.yml @@ -0,0 +1,21 @@ +name: check smoke tests + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + smoke_tests: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + + +