1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 21:51:12 +02:00

Implemented GitHub Actions Docker workflow

This commit is contained in:
Leonardo Lima 2020-10-06 07:00:01 -03:00
parent 07756037a6
commit 07973ff935

23
.github/workflows/docker.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: Docker
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: docker-compose build
- name: Run
run: docker-compose run application