From acb4f63e5696edb4f358554b9ebe774c77c48ee1 Mon Sep 17 00:00:00 2001 From: Victor Date: Thu, 31 Oct 2024 13:05:32 +0000 Subject: [PATCH] make install + yezzey test --- .github/workflows/yezzey-test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/yezzey-test.yml diff --git a/.github/workflows/yezzey-test.yml b/.github/workflows/yezzey-test.yml new file mode 100644 index 0000000000..9abae30771 --- /dev/null +++ b/.github/workflows/yezzey-test.yml @@ -0,0 +1,20 @@ +name: Docker Image CI + +on: + push: + branches: [ "OPENGPDB_STABLE" ] + pull_request: + branches: [ "OPENGPDB_STABLE", "YGP_6.27_STABLE" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag yezzey_test:1234 && docker run yezzey_test:1234 + +