diff options
Diffstat (limited to '.github/workflows/docker-image.yml')
-rw-r--r-- | .github/workflows/docker-image.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 6e51f1e..8e39202 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -12,9 +12,9 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Build the docker image + - name: Build docker image run: docker build -t reo7sp/tgbot-cpp -f Dockerfile . - - name: Build the docker image with unit tests + - name: Build docker image with examples and 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 |