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:
parent
07756037a6
commit
07973ff935
1 changed files with 23 additions and 0 deletions
23
.github/workflows/docker.yml
vendored
Normal file
23
.github/workflows/docker.yml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue