From dfeab481e2b250e7d1388cef9af7fcadc048f57f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20Juri=C4=8D?= <74237898+BorisYourich@users.noreply.github.com> Date: Mon, 23 Sep 2024 16:59:28 +0200 Subject: [PATCH 1/4] Create ci.yaml --- .github/ISSUE_TEMPLATE/ci.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/ci.yaml diff --git a/.github/ISSUE_TEMPLATE/ci.yaml b/.github/ISSUE_TEMPLATE/ci.yaml new file mode 100644 index 0000000..c046644 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ci.yaml @@ -0,0 +1,20 @@ +name: ci + +on: [push, pull_request] + +jobs: + + static-code-analysis: + runs-on: ubuntu-latest + defaults: + run: + shell: bash -l {0} + steps: + + - name: check out repository + uses: actions/checkout@v4 + + # Docker Compose up command + - name: Run Docker Compose + run: | + docker compose up -d --build From 6a52cd0b46fadf512fdec61c476d5210f5556632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20Juri=C4=8D?= <74237898+BorisYourich@users.noreply.github.com> Date: Mon, 23 Sep 2024 17:03:50 +0200 Subject: [PATCH 2/4] Delete .github/ISSUE_TEMPLATE/ci.yaml --- .github/ISSUE_TEMPLATE/ci.yaml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/ci.yaml diff --git a/.github/ISSUE_TEMPLATE/ci.yaml b/.github/ISSUE_TEMPLATE/ci.yaml deleted file mode 100644 index c046644..0000000 --- a/.github/ISSUE_TEMPLATE/ci.yaml +++ /dev/null @@ -1,20 +0,0 @@ -name: ci - -on: [push, pull_request] - -jobs: - - static-code-analysis: - runs-on: ubuntu-latest - defaults: - run: - shell: bash -l {0} - steps: - - - name: check out repository - uses: actions/checkout@v4 - - # Docker Compose up command - - name: Run Docker Compose - run: | - docker compose up -d --build From 6aef62e43206568aa2e3cead6ecd57bd25b66ff9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20Juri=C4=8D?= <74237898+BorisYourich@users.noreply.github.com> Date: Mon, 23 Sep 2024 17:04:21 +0200 Subject: [PATCH 3/4] Create ci.yaml --- .github/workflows/ci.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..c046644 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,20 @@ +name: ci + +on: [push, pull_request] + +jobs: + + static-code-analysis: + runs-on: ubuntu-latest + defaults: + run: + shell: bash -l {0} + steps: + + - name: check out repository + uses: actions/checkout@v4 + + # Docker Compose up command + - name: Run Docker Compose + run: | + docker compose up -d --build From 0110192f68bc0ce6f5537869916a41d8ded6f07d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20Juri=C4=8D?= <74237898+BorisYourich@users.noreply.github.com> Date: Wed, 25 Sep 2024 13:50:14 +0200 Subject: [PATCH 4/4] Update ci.yaml --- .github/workflows/ci.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c046644..8ef85d5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: - static-code-analysis: + deployment-test: runs-on: ubuntu-latest defaults: run: @@ -14,7 +14,6 @@ jobs: - name: check out repository uses: actions/checkout@v4 - # Docker Compose up command - - name: Run Docker Compose + - name: run docker compose run: | docker compose up -d --build