diff options
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 |