summaryrefslogtreecommitdiff
path: root/.github/workflows/docker-image.yml
blob: 28c526ba8214e902c95b9d9606551bdd3a1eebbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: Docker Image CI

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Build docker image
        run: docker build -t reo7sp/tgbot-cpp -f Dockerfile .
      - 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