-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (32 loc) · 817 Bytes
/
CICD.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: CI/CD Workflow
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the app
run: |
echo "Here is where you'd put your build commands!" # Replace this with your build commands
test:
name: Test
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test the app
run: |
echo "Here is where you'd put your test commands!" # Replace this with your test commands
deploy:
name: Deploy
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Deploy the app
run: |
echo "Here is where you'd put your deployment commands!" # Replace this with your deploy commands