diff options
author | Paramtamtam <[email protected]> | 2019-12-18 11:39:57 +0500 |
---|---|---|
committer | Paramtamtam <[email protected]> | 2019-12-18 11:39:57 +0500 |
commit | 62f72e94556e093099c58eae6e2b0366f72d79c9 (patch) | |
tree | 27843291d4671cdbb8486ba39d0487a350cd1696 /.github/workflows/ci-build.yml | |
parent | fadf373c1fe5e51bfaeb9e5ac3fe4ee748620a44 (diff) |
Docker environment added
Diffstat (limited to '.github/workflows/ci-build.yml')
-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..63b95c72 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@v1 + with: + fetch-depth: 1 + + - name: Build image + run: docker build -t roadrunner -f Dockerfile . + + - name: Try to execute + run: docker run --rm roadrunner -v |