From 57de9eb9f5a5fad8067ca25c3e2067910e06fe5e Mon Sep 17 00:00:00 2001 From: Tobias Munk Date: Tue, 26 Mar 2024 13:53:05 +0100 Subject: [PATCH] Created GH-action --- .github/workflows/docker-image.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..e67061a --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,20 @@ +name: Codeception Tests +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build the Docker image + run: | + cd tests + make all + make test