summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorOleg Morozenkov <o.morozenkov@corp.mail.ru>2021-12-04 12:13:54 +0100
committerOleg Morozenkov <o.morozenkov@corp.mail.ru>2021-12-04 12:13:54 +0100
commit0d32c60639f49492b840f6864f4785426b9d93e9 (patch)
treea79a7791528185d3f8dbe64d8e28fb45104130e8 /.github
parenta505f8ed49117c548b15dfd7c6c488be48b8d682 (diff)
Update docker-image.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docker-image.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
index 7f786fc..6e51f1e 100644
--- a/.github/workflows/docker-image.yml
+++ b/.github/workflows/docker-image.yml
@@ -7,12 +7,14 @@ on:
branches: [ master ]
jobs:
-
build:
-
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- - name: Build the Docker image
- run: docker build . --file Dockerfile --tag tgbot-cpp:$(date +%s)
+ - name: Build the docker image
+ run: docker build -t reo7sp/tgbot-cpp -f Dockerfile .
+ - name: Build the docker image with unit tests
+ run: docker build -t reo7sp/tgbot-cpp-test -f Dockerfile_test .
+ - name: Run unit tests
+ run: docker run --rm reo7sp/tgbot-cpp-test