diff options
author | Anton Titov <[email protected]> | 2019-12-25 11:30:27 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-25 11:30:27 +0300 |
commit | f01a1485be61d1eec2a751c73a0251a1d4d17388 (patch) | |
tree | 1940c5f5239fa83fd7a5558cc162dfc677965178 /.github/workflows | |
parent | da1d47e290b593d00c65140cc6036f5ea34e7dd3 (diff) | |
parent | 3506812078eea46b795dd0edd96df9f4586026df (diff) |
Merge pull request #219 from tarampampam/master
RR binary in Docker
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci-build.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 3031cbb4..360c4f30 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -89,3 +89,18 @@ jobs: env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} if: + + image: + name: Build docker image + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v2 + with: + fetch-depth: 1 + + - name: Build image + run: docker build -t rr:local -f Dockerfile . + + - name: Try to execute + run: docker run --rm rr:local -v |