Add build checks #8
Workflow file for this run
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: Docker | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
jobs: | |
compile-ubuntu-docker: | |
name: Build Docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Get Docker | |
run: | | |
sudo apt update | |
sudo apt install docker | |
- name: Build Docker image | |
run: docker build -t matthx/microocppsimulator:latest . |