Merge pull request #5 from lucaspinheiro1/patch-1 #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v1 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag github-action-fpm | |
- name: Explore docker image | |
env: | |
CI: "true" | |
run: | | |
wget -qO- https://github.com/wagoodman/dive/releases/download/v0.9.1/dive_0.9.1_linux_amd64.tar.gz | sudo tar xvz -C /usr/local/bin | |
dive github-action-fpm |