Skip to content

Commit 64f65ba

Browse files
authored
Update main.yml
1 parent 261f3c8 commit 64f65ba

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,31 @@
1+
# This is a basic workflow to help you get started with Actions
2+
13
name: CI
4+
5+
# Controls when the workflow will run
26
on:
7+
# Triggers the workflow on push or pull request events but only for the main branch
38
push:
9+
10+
11+
# Allows you to run this workflow manually from the Actions tab
412
workflow_dispatch:
13+
14+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
515
jobs:
16+
# This workflow contains a single job called "build"
617
build:
18+
# The type of runner that the job will run on
719
runs-on: ubuntu-latest
20+
21+
# Steps represent a sequence of tasks that will be executed as part of the job
822
steps:
23+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
924
- uses: actions/checkout@v2
10-
- name: Build the docker container
11-
run: docker-compose -f development/docker-compose up --build
25+
26+
# Runs a single command using the runners shell
27+
- name: Build the docker container
28+
run: docker-compose -f development/docker-compose.yml up --build
29+
30+
# Runs a set of commands using the runners shell
31+

0 commit comments

Comments
 (0)